Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save metapraveen/c3055b93c23a4d9d2f2292e0df688908 to your computer and use it in GitHub Desktop.
Save metapraveen/c3055b93c23a4d9d2f2292e0df688908 to your computer and use it in GitHub Desktop.
class DownloadAndWriteToCache
include Sidekiq::Worker
def perform(url, cache_id, name, meta)
...
end
def on_job_done(args)
url = args[0]
cache_id = args[1]
name = args[2]
meta = args[3]
...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment