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