class SidekiqUniqueJobs::Lock::WhileExecutingReject

@author Mikael Henriksson <mikael@mhenrixon.com>
See {#execute} for more information about the server
See {#lock} for more information about the client.
Unlocks after the server is done processing
Locks from the server process
Locks jobs while executing

def server_strategy

Returns:
  • (OnConflict::Reject) - a reject strategy
def server_strategy
  @server_strategy ||= OnConflict.find_strategy(:reject).new(item, redis_pool)
end