Class: Fog::Parsers::AWS::SQS::ReceiveMessage

Inherits:
Base
  • Object
show all
Defined in:
lib/fog/aws/parsers/sqs/receive_message.rb

Instance Attribute Summary

Attributes inherited from Base

#response

Instance Method Summary collapse

Methods inherited from Base

#attr_value, #characters, #end_element_namespace, #initialize, #start_element, #start_element_namespace, #value

Constructor Details

This class inherits a constructor from Fog::Parsers::Base

Instance Method Details

#end_element(name) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# File 'lib/fog/aws/parsers/sqs/receive_message.rb', line 13

def end_element(name)
  case name
  when 'RequestId'
    @response['ResponseMetadata']['RequestId'] = @value
  when 'Message'
    @response['Message'] << @message
    @message = { 'Attributes' => {} }
  when 'Body', 'MD5OfBody', 'MessageId', 'ReceiptHandle'
    @message[name] = @value
  when 'Name'
    @current_attribute_name = @value
  when 'Value'
    case @current_attribute_name
    when 'ApproximateFirstReceiveTimestamp', 'SentTimestamp'
      @message['Attributes'][@current_attribute_name] = Time.at(@value.to_i / 1000.0)
    when 'ApproximateReceiveCount'
      @message['Attributes'][@current_attribute_name] = @value.to_i
    else
      @message['Attributes'][@current_attribute_name] = @value
    end
  end
end

#resetObject



8
9
10
11
# File 'lib/fog/aws/parsers/sqs/receive_message.rb', line 8

def reset
  @message  = { 'Attributes' => {} }
  @response = { 'ResponseMetadata' => {}, 'Message' => []}
end