# File lib/stomp_server/stomp_frame.rb, line 74 def parse count = @frames.size parse_header unless @frame.command if @frame.command if @body_length parse_binary_body else parse_text_body end end # parse_XXX_body return the frame if they succeed and nil if they fail # the result will fall through parse if count != @frames.size end