Class: EventMachine::Protocols::Stomp::Message
- Inherits:
-
Object
- Object
- EventMachine::Protocols::Stomp::Message
- Defined in:
- lib/em/protocols/stomp.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Body of the message.
-
#command ⇒ Object
The command associated with the message, usually 'CONNECTED' or 'MESSAGE'.
-
#header ⇒ Object
(also: #headers)
Hash containing headers such as destination and message-id.
Instance Attribute Details
#body ⇒ Object
Body of the message
65 66 67 |
# File 'lib/em/protocols/stomp.rb', line 65 def body @body end |
#command ⇒ Object
The command associated with the message, usually 'CONNECTED' or 'MESSAGE'
60 61 62 |
# File 'lib/em/protocols/stomp.rb', line 60 def command @command end |
#header ⇒ Object Also known as: headers
Hash containing headers such as destination and message-id
62 63 64 |
# File 'lib/em/protocols/stomp.rb', line 62 def header @header end |