IdempotencyKeyService
internal.internal.IdempotencyKeyService
Properties
__configModule__
Record<string, unknown>__container__
anyRequired__moduleDeclaration__
Record<string, unknown>manager_
EntityManagerRequiredtransactionManager_
undefined | EntityManagerRequiredAccessors
activeManager_
Protected
get
activeManager_(): EntityManager
Returns
EntityManager
EntityManager
EntityManagerRequiredInherited from
TransactionBaseService.activeManager_
Methods
atomicPhase_
Protected
atomicPhase_<TResult
, TError
>(work
, isolationOrErrorHandler?
, maybeErrorHandlerOrDontFail?
): Promise
<TResult
>
Wraps some work within a transactional block. If the service already has a transaction manager attached this will be reused, otherwise a new transaction manager is created.
TResult
objectRequiredTError
objectRequiredParameters
work
(transactionManager: EntityManager) => Promise<TResult>RequiredisolationOrErrorHandler
IsolationLevel | (error: TError) => Promise<void | TResult>maybeErrorHandlerOrDontFail
(error: TError) => Promise<void | TResult>Returns
Promise
<TResult
>
Promise
Promise<TResult>RequiredInherited from
TransactionBaseService.atomicPhase_
create
create(payload
): Promise
<IdempotencyKey
>
Creates an idempotency key for a request. If no idempotency key is provided in request, we will create a unique identifier.
Parameters
Returns
Promise
<IdempotencyKey
>
the created idempotency key
initializeRequest
initializeRequest(headerKey
, reqMethod
, reqParams
, reqPath
): Promise
<IdempotencyKey
>
Execute the initial steps in a idempotent request.
Parameters
headerKey
stringRequiredreqMethod
stringRequiredreqParams
Record<string, unknown>RequiredreqPath
stringRequiredReturns
Promise
<IdempotencyKey
>
the existing or created idempotency key
lock
lock(idempotencyKey
): Promise
<IdempotencyKey
>
Locks an idempotency.
Parameters
idempotencyKey
stringRequiredReturns
Promise
<IdempotencyKey
>
result of the update operation
retrieve
retrieve(idempotencyKeyOrSelector
): Promise
<IdempotencyKey
>
Retrieves an idempotency key
Parameters
Returns
Promise
<IdempotencyKey
>
idempotency key
shouldRetryTransaction_
Protected
shouldRetryTransaction_(err
): boolean
Parameters
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
boolean
booleanInherited from
TransactionBaseService.shouldRetryTransaction_
update
update(idempotencyKey
, update
): Promise
<IdempotencyKey
>
Locks an idempotency.
Parameters
idempotencyKey
stringRequiredReturns
Promise
<IdempotencyKey
>
result of the update operation
withTransaction
withTransaction(transactionManager?
): IdempotencyKeyService
Parameters
transactionManager
EntityManagerReturns
Inherited from
TransactionBaseService.withTransaction
workStage
workStage(idempotencyKey
, callback
): Promise
<IdempotencyKey
>
Performs an atomic work stage. An atomic work stage contains some related functionality, that needs to be transactionally executed in isolation. An idempotent request will always consist of 2 or more of these phases. The required phases are "started" and "finished".
Parameters
idempotencyKey
stringRequiredReturns
Promise
<IdempotencyKey
>