Sha256: e074e604fab4e1d942fb84b71283df7cc476897493248a6e0f488768c6c3be01

Contents?: true

Size: 228 Bytes

Versions: 2

Compression:

Stored size: 228 Bytes

Contents

# frozen_string_literal: true

# :nocov:

class UntilAndWhileExecutingJob
  include Sidekiq::Worker

  sidekiq_options queue: :working, unique: :until_and_while_executing, lock_timeout: 0

  def perform(one)
    [one]
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
sidekiq-unique-jobs-6.0.0.rc2 examples/until_and_while_executing_job.rb
sidekiq-unique-jobs-6.0.0.rc1 examples/until_and_while_executing_job.rb