Method: Pantry::Communication::FileService#send_message

Defined in:
lib/pantry/communication/file_service.rb

#send_message(identity, message) ⇒ Object



84
85
86
87
88
89
90
91
# File 'lib/pantry/communication/file_service.rb', line 84

def send_message(identity, message)
  @socket.write(
    [
      identity,
      SerializeMessage.to_zeromq(message)
    ].flatten
  )
end