Method: Invoker::IPC::Message::Serialization#eql?

Defined in:
lib/invoker/ipc/message.rb

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


28
29
30
31
# File 'lib/invoker/ipc/message.rb', line 28

def eql?(other)
  other.class == self.class &&
    compare_attributes(other)
end