Module: Ruote::Resque::ReplyJob

Defined in:
lib/ruote/resque/reply_job.rb

Overview

An empty job used for message passing between job instances and ruote-resque.

Class Method Summary collapse

Class Method Details

.perform(*args) ⇒ void

This method returns an undefined value.

This is a no-op.



16
17
18
# File 'lib/ruote/resque/reply_job.rb', line 16

def self.perform(*args)
  # noop
end

.queue#to_s

Returns The configured queue for message passing.

Returns:

  • (#to_s)

    The configured queue for message passing.



10
11
12
# File 'lib/ruote/resque/reply_job.rb', line 10

def self.queue
  Ruote::Resque.configuration.reply_queue
end