Skip to content

Instantly share code, notes, and snippets.

@pietern
Created November 5, 2009 16:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pietern/227166 to your computer and use it in GitHub Desktop.
Save pietern/227166 to your computer and use it in GitHub Desktop.
class SomeJob
include Resque::Mixin::Async
include Resque::Mixin::Status
def self.some_long_running_method(*args)
resque_status :just_started
# ...
resque_status :halfway
# ...
resque_status :im_there!
end
end
SomeJob.async(:some_long_running_method, :foo, :bar)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment