Class: RightAws::SqsInterface::SqsReceiveMessagesParser

Inherits:
RightAWSParser
  • Object
show all
Defined in:
lib/sqs/right_sqs_interface.rb

Overview


PARSERS: Messages

Constant Summary

Constants inherited from RightAWSParser

RightAWSParser::DEFAULT_XML_LIBRARY

Instance Attribute Summary

Attributes inherited from RightAWSParser

#full_tag_name, #result, #tag, #xml_lib, #xmlpath

Instance Method Summary collapse

Methods inherited from RightAWSParser

#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=

Constructor Details

This class inherits a constructor from RightAws::RightAWSParser

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class RightAws::RightAWSParser

Instance Method Details

#resetObject

:nodoc:



570
571
572
# File 'lib/sqs/right_sqs_interface.rb', line 570

def reset
  @result = []
end

#tagend(name) ⇒ Object



576
577
578
579
580
581
582
# File 'lib/sqs/right_sqs_interface.rb', line 576

def tagend(name)
  case name
    when 'MessageId'  ; @current_message[:id]   = @text
    when 'MessageBody'; @current_message[:body] = @text
    when 'Message'    ; @result << @current_message
  end
end

#tagstart(name, attributes) ⇒ Object



573
574
575
# File 'lib/sqs/right_sqs_interface.rb', line 573

def tagstart(name, attributes)
  @current_message = {} if name == 'Message'
end