mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
8 lines
119 B
Ruby
8 lines
119 B
Ruby
class HardWorker
|
|
include Sidekiq::Worker
|
|
|
|
def perform(name, count)
|
|
sleep 1
|
|
print "#{Time.now}\n"
|
|
end
|
|
end
|