Class: LSQS::Actions::CreateQueue
- Defined in:
- lib/lsqs/actions/create_queue.rb
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#perform(params) ⇒ String
Performs the specific action.
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 |
# File 'lib/lsqs/actions/create_queue.rb', line 11 def perform(params) name = params['QueueName'] queue = queue_list.create(name, params) base_url = params['base_url'] url = build_url(base_url, name) builder.QueueUrl build_url(base_url, name) end |