Sha256: bc828357ff89e9ef0aa81cb69e50d249ef664618536053e5739d3dd628c754d2
Contents?: true
Size: 286 Bytes
Versions: 16
Compression:
Stored size: 286 Bytes
Contents
# frozen_string_literal: true # :nocov: class MyUniqueJob include Sidekiq::Worker sidekiq_options lock: :until_executed, lock_expiration: 7_200, queue: :customqueue, retry: 10 def perform(one, two) [one, two] end end
Version data entries
16 entries across 16 versions & 1 rubygems