Module: EMRPC::FastMessageProtocolAdapter

Defined in:
lib/emrpc/fast_message_protocol.rb

Overview

Allows to use send_message/receive_message without a knowledge of the particular messaging protocol.

Instance Method Summary collapse

Instance Method Details

#receive_fast_message(msg) ⇒ Object



106
107
108
# File 'lib/emrpc/fast_message_protocol.rb', line 106

def receive_fast_message(msg)
  receive_message(msg)
end

#send_message(msg) ⇒ Object



103
104
105
# File 'lib/emrpc/fast_message_protocol.rb', line 103

def send_message(msg)
  send_fast_message(msg)
end