Created
April 14, 2017 22:01
-
-
Save bleonard/29d59e4f0baf06c06d9fb4784f8e0d5b to your computer and use it in GitHub Desktop.
This file contains hidden or 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 HardWorker | |
include TResque::Worker | |
inputs :name, :count | |
def work | |
# do something with self.name, self.count | |
end | |
end | |
# enqueue | |
HardWorker.enqueue(name: 'bob', count: 5) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment