Created
November 5, 2009 15:03
-
-
Save pietern/227095 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class SomeJob | |
include Resque::Mixin::Status | |
def self.perform(*args) | |
job_status "foo" | |
end | |
end | |
# versus | |
class SomeJob | |
@monitor = true | |
def self.perform(*args) | |
Resque.current_job.status = "foo" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment