1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/sidekiq/worker.rb

43 lines
816 B
Ruby
Raw Normal View History

require 'sidekiq/client'
2012-01-16 23:05:38 -05:00
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
def info(msg)
print "#{msg}\n"
end
alias_method :log, :info
def debug(msg)
print "#{msg}\n" if $DEBUG
end
2012-01-21 19:42:21 -05:00
module ClassMethods
def perform_async(*args)
Sidekiq::Client.push('class' => self.name, 'args' => args)
end
2012-01-16 23:05:38 -05:00
end
end
end