Container class for frames, misnamed technically
[Source]
# File lib/stomp.rb, line 251 251: def initialize 252: yield(self) if block_given? 253: end
# File lib/stomp.rb, line 255 255: def to_s 256: "<Stomp::Message headers=#{headers.inspect} body='#{body}' command='#{command}' >" 257: end
[Validate]