Sha256: acbe83cb9dcb41611f78682860e504defb36fb1ea11e76a31f0a9c65580e79dc
Contents?: true
Size: 202 Bytes
Versions: 16
Compression:
Stored size: 202 Bytes
Contents
# frozen_string_literal: true # :nocov: class ExpiringJob include Sidekiq::Worker sidekiq_options lock: :until_executed, lock_expiration: 10 * 60 def perform(one, two) [one, two] end end
Version data entries
16 entries across 16 versions & 1 rubygems