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
permalink #reset ⇒ Object
:nodoc:
571 572 573 |
# File 'lib/sqs/right_sqs_interface.rb', line 571 def reset @result = [] end |
permalink #tagend(name) ⇒ Object
[View source]
577 578 579 580 581 582 583 |
# File 'lib/sqs/right_sqs_interface.rb', line 577 def tagend(name) case name when 'MessageId' ; [:id] = @text when 'MessageBody'; [:body] = @text when 'Message' ; @result << end end |
permalink #tagstart(name, attributes) ⇒ Object
[View source]
574 575 576 |
# File 'lib/sqs/right_sqs_interface.rb', line 574 def (name, attributes) = {} if name == 'Message' end |