class SidekiqUniqueJobs::Lock::UntilAndWhileExecuting

def execute

Other tags:
    Yield: - to the worker class perform method
def execute
  if unlock
    lock_on_failure do
      runtime_lock.execute { return yield }
    end
  else
    log_warn "couldn't unlock digest: #{item[LOCK_DIGEST]} #{item[JID]}"
  end
end