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