Skip to content

Instantly share code, notes, and snippets.

@bleonard
Created April 14, 2017 22:01
Show Gist options
  • Save bleonard/29d59e4f0baf06c06d9fb4784f8e0d5b to your computer and use it in GitHub Desktop.
Save bleonard/29d59e4f0baf06c06d9fb4784f8e0d5b to your computer and use it in GitHub Desktop.
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