Sha256: 3b809aa1b2911dab937abe0f0abd64ada0cb7cda4a61de0aff9c1f7fe3f11fb0
Contents?: true
Size: 246 Bytes
Versions: 3
Compression:
Stored size: 246 Bytes
Contents
# frozen_string_literal: true module SidekiqUniqueJobs class Lock class UntilExecuted < BaseLock OK ||= 'OK' def execute return unless locked? with_cleanup { yield if block_given? } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems