mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
74d0e5ec35
Remove all connection_pool usage of method_missing. Change Sidekiq.redis API to require a block.
37 lines
771 B
Ruby
37 lines
771 B
Ruby
require 'sidekiq/client'
|
|
|
|
module Sidekiq
|
|
|
|
##
|
|
# 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
|
|
def self.included(base)
|
|
base.extend(ClassMethods)
|
|
end
|
|
|
|
module ClassMethods
|
|
def perform_async(*args)
|
|
Sidekiq::Client.push('class' => self.name, 'args' => args)
|
|
end
|
|
|
|
def queue(name)
|
|
Sidekiq::Client.queue_mappings[self.name] = name.to_s
|
|
end
|
|
end
|
|
end
|
|
end
|