Sha256: 6ffd4c76c6f59a70812dc2fe9f31a9871d132aa5f29b85866b9bb14ac28e1145
Contents?: true
Size: 299 Bytes
Versions: 16
Compression:
Stored size: 299 Bytes
Contents
# frozen_string_literal: true # :nocov: class LongRunningJob include Sidekiq::Worker sidekiq_options lock: :until_and_while_executing, 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