Skip to content

Instantly share code, notes, and snippets.

@bleonard
Created April 14, 2017 22:00
Show Gist options
  • Save bleonard/9678fc554c74b40c8de7a6473a90c066 to your computer and use it in GitHub Desktop.
Save bleonard/9678fc554c74b40c8de7a6473a90c066 to your computer and use it in GitHub Desktop.
class HardWorker
include Sidekiq::Worker
def perform(name, count)
# do something with name, count
end
end
# enqueue
HardWorker.perform_async('bob', 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment