Container class for frames, misnamed technically
[Source]
# File lib/stomp/message.rb, line 7 7: def initialize 8: yield(self) if block_given? 9: end
# File lib/stomp/message.rb, line 11 11: def to_s 12: "<Stomp::Message headers=#{headers.inspect} body='#{body}' command='#{command}' >" 13: end
[Validate]