TransactionBaseService
Constructors
constructor
Protected **new TransactionBaseService**(__container__, __configModule__?, __moduleDeclaration__?)
Parameters
__container__anyRequired__configModule__Record<string, unknown>__moduleDeclaration__Record<string, unknown>Properties
__configModule__Record<string, unknown>__container__anyRequired__moduleDeclaration__Record<string, unknown>manager_EntityManagerRequiredtransactionManager_undefined | EntityManagerRequiredAccessors
activeManager_
Protected get**activeManager_**(): EntityManager
Returns
EntityManager
EntityManagerEntityManagerRequiredMethods
atomicPhase_
Protected **atomicPhase_**<TypeParameter TResult, TypeParameter 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.
TResultobjectRequiredTErrorobjectRequiredParameters
work(transactionManager: EntityManager) => Promise<TResult>Requiredthe transactional work to be done
isolationOrErrorHandlerIsolationLevel | (error: TError) => Promise<void | TResult>the isolation level to be used for the work.
maybeErrorHandlerOrDontFail(error: TError) => Promise<void | TResult>Potential error handler
Returns
Promise<TResult>
PromisePromise<TResult>Requiredthe result of the transactional work
shouldRetryTransaction_
Protected **shouldRetryTransaction_**(err): boolean
Parameters
errRecord<string, unknown> | { code: string }RequiredReturns
boolean
booleanbooleanwithTransaction
**withTransaction**(transactionManager?): [TransactionBaseService](/references/services/classes/TransactionBaseService)
Parameters
transactionManagerEntityManagerReturns
Was this section helpful?