Class: LSQS::Actions::ReceiveMessage

Inherits:
Base
  • Object
show all
Defined in:
lib/lsqs/actions/receive_message.rb

Instance Attribute Summary

Attributes inherited from Base

#builder, #queue_list

Instance Method Summary collapse

Methods inherited from Base

#build_url, #initialize, #name, #to_xml

Constructor Details

This class inherits a constructor from LSQS::Actions::Base

Instance Method Details

#perform(params) ⇒ String

Performs the specific action.



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/lsqs/actions/receive_message.rb', line 11

def perform(params)
  name  = params['QueueName']
  queue = queue_list.find(name)
  messages = queue.get_messages(params)
  
  messages.each do |receipt, message|
    builder.Message do
      builder.MessageId message.id
      builder.ReceiptHandle receipt
      builder.MD5OfBody message.md5
      builder.Body message.body
    end
  end
end