Class Stomp::Message
In: lib/stomp.rb
Parent: Object
Message Client Connection lib/stomp.rb Stomp dot/m_0_0.png

Container class for frames, misnamed technically

Methods

new   to_s  

Attributes

body  [RW] 
command  [RW] 
headers  [RW] 

Public Class methods

[Source]

     # File lib/stomp.rb, line 245
245:     def initialize
246:       yield(self) if block_given?
247:     end

Public Instance methods

[Source]

     # File lib/stomp.rb, line 249
249:     def to_s
250:       "<Stomp::Message headers=#{headers.inspect} body='#{body}' command='#{command}' >"
251:     end

[Validate]