Class: RightAws::SqsInterface::SqsReceiveMessagesParser
- Inherits:
-
RightAWSParser
- Object
- RightAWSParser
- RightAws::SqsInterface::SqsReceiveMessagesParser
- 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
#reset ⇒ Object
:nodoc:
571 572 573 |
# File 'lib/sqs/right_sqs_interface.rb', line 571 def reset @result = [] end |
#tagend(name) ⇒ Object
577 578 579 580 581 582 583 |
# File 'lib/sqs/right_sqs_interface.rb', line 577 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
574 575 576 |
# File 'lib/sqs/right_sqs_interface.rb', line 574 def (name, attributes) @current_message = {} if name == 'Message' end |