Guest User

Untitled

a guest
Apr 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class SomeJob
  2. include Resque::Mixin::Status
  3.  
  4. def self.perform(*args)
  5. resque_status "00/50"
  6. # ...
  7. resque_status "50/50"
  8. end
  9. end
  10.  
  11. Resque.enqueue(SomeJob)
Add Comment
Please, Sign In to add comment