2012-01-25 16:32:51 -05:00
|
|
|
require 'sidekiq/client'
|
2012-01-23 17:05:03 -05:00
|
|
|
|
2012-01-16 23:05:38 -05:00
|
|
|
module Sidekiq
|
|
|
|
|
2012-01-25 16:32:51 -05:00
|
|
|
##
|
|
|
|
# Include this module in your worker class and you can easily create
|
|
|
|
# asynchronous jobs:
|
|
|
|
#
|
|
|
|
# class HardWorker
|
|
|
|
# include Sidekiq::Worker
|
|
|
|
#
|
|
|
|
# def perform(*args)
|
|
|
|
# # do some work
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# Then in your Rails app, you can do this:
|
|
|
|
#
|
|
|
|
# HardWorker.perform_async(1, 2, 3)
|
|
|
|
#
|
|
|
|
# Note that perform_async is a class method, perform is an instance method.
|
|
|
|
module Worker
|
2012-01-25 16:53:00 -05:00
|
|
|
def self.included(base)
|
|
|
|
base.extend(ClassMethods)
|
|
|
|
end
|
|
|
|
|
|
|
|
module ClassMethods
|
|
|
|
def perform_async(*args)
|
2012-04-01 22:53:45 -04:00
|
|
|
Sidekiq::Client.push('class' => self, 'args' => args)
|
2012-01-25 16:53:00 -05:00
|
|
|
end
|
2012-02-10 23:20:01 -05:00
|
|
|
|
2012-04-01 22:53:45 -04:00
|
|
|
##
|
|
|
|
# Allows customization for this type of Worker.
|
|
|
|
# Legal options:
|
|
|
|
#
|
|
|
|
# :unique - enable the UniqueJobs middleware for this Worker, default *true*
|
|
|
|
# :queue - use a named queue for this Worker, default 'default'
|
|
|
|
# :retry - enable the RetryJobs middleware for this Worker, default *true*
|
2012-04-26 11:40:07 -04:00
|
|
|
# :timeout - timeout the perform method after N seconds, default *nil*
|
2012-04-27 23:25:46 -04:00
|
|
|
# :backtrace - whether to save any error backtrace in the retry payload to display in web UI,
|
|
|
|
# can be true, false or an integer number of lines to save, default *false*
|
2012-04-01 22:53:45 -04:00
|
|
|
def sidekiq_options(opts={})
|
|
|
|
@sidekiq_options = get_sidekiq_options.merge(stringify_keys(opts || {}))
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_sidekiq_options # :nodoc:
|
2012-04-18 23:13:10 -04:00
|
|
|
defined?(@sidekiq_options) ? @sidekiq_options : { 'unique' => true, 'retry' => true, 'queue' => 'default' }
|
2012-04-01 22:53:45 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def stringify_keys(hash) # :nodoc:
|
|
|
|
hash.keys.each do |key|
|
|
|
|
hash[key.to_s] = hash.delete(key)
|
|
|
|
end
|
|
|
|
hash
|
|
|
|
end
|
2012-01-16 23:05:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|