class SidekiqUniqueJobs::Lock::WhileExecuting

def execute

Other tags:
    Yield: - to the worker class perform method
def execute
  with_logging_context do
    server_strategy&.call unless locksmith.lock do
      yield
      callback_safely
    end
  end
ensure
  locksmith.unlock
end