Class: Queuel::SQS::Engine

Inherits:
Base::Engine show all
Extended by:
Forwardable
Defined in:
lib/queuel/sqs/engine.rb

Constant Summary collapse

AWSSDKMissingError =
Class.new(StandardError)

Instance Method Summary collapse

Methods inherited from Base::Engine

inherited, #initialize

Methods included from Introspect

#const_with_nesting, #module_names

Constructor Details

This class inherits a constructor from Queuel::Base::Engine

Instance Method Details

#queue(which_queue) ⇒ Object



10
11
12
# File 'lib/queuel/sqs/engine.rb', line 10

def queue(which_queue)
  memoized_queues[which_queue.to_s] ||= queue_klass.new(client, which_queue, credentials)
end