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