Class: QRPC::Locator::EventedQueueLocator::REUQ

Inherits:
EventedQueue::Recurring
  • Object
show all
Defined in:
lib/qrpc/locator/evented-queue.rb

Overview

Helper recurring evented queue with unified queues support.

Since:

  • 0.9.0

Instance Method Summary collapse

Constructor Details

#initialize(*args) ⇒ REUQ

Constructor.

Since:

  • 0.9.0



80
81
82
83
84
85
# File 'lib/qrpc/locator/evented-queue.rb', line 80

def initialize(*args)
    cls = args.first
    args.shift
    object = cls::new(*args)
    super(object)
end