module Envoy::Protocol

Public Instance Methods

receive_object((command, *args)) click to toggle source
# File lib/envoy/protocol.rb, line 26
def receive_object ((command, *args))
  __send__("receive_#{command}", *args)
end
send_object(*args) click to toggle source
Calls superclass method
# File lib/envoy/protocol.rb, line 22
def send_object *args
  super(args.size > 1 ? BERT::Tuple[*args] : args[0])
end
serializer() click to toggle source
# File lib/envoy/protocol.rb, line 18
def serializer
  Serializer
end