1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/myapp/app/controllers/work_controller.rb
2012-02-18 20:01:29 -08:00

33 lines
698 B
Ruby

class WorkController < ApplicationController
def index
@count = rand(100)
puts "Adding #{@count} jobs"
@count.times do |x|
HardWorker.perform_async('bubba', 0.01, x)
end
end
def email
UserMailer.delay.greetings(Time.now)
render :nothing => true
end
def long
10.times do |x|
HardWorker.perform_async('bob', 10, x)
end
render :text => 'enqueued'
end
def delayed_post
p = Post.first
unless p
p = Post.create!(:title => "Title!", :body => 'Body!')
p2 = Post.create!(:title => "Other!", :body => 'Second Body!')
else
p2 = Post.second
end
p.delay.long_method(p2)
render :nothing => true
end
end