AbstractNotificationService
internal.internal.AbstractNotificationService
Implements
Properties
__configModule__
Record<string, unknown>__container__
anyRequired__moduleDeclaration__
Record<string, unknown>manager_
EntityManagerRequiredtransactionManager_
undefined | EntityManagerRequiredidentifier
stringRequiredAccessors
activeManager_
Protected
get
activeManager_(): EntityManager
Returns
EntityManager
EntityManager
EntityManagerRequiredImplementation of
INotificationService.activeManager_
Inherited 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>RequiredImplementation of
INotificationService.atomicPhase_
Inherited from
TransactionBaseService.atomicPhase_
getIdentifier
getIdentifier(): string
Returns
string
string
stringresendNotification
Abstract
resendNotification(notification
, config
, attachmentGenerator
): Promise
<ReturnedData
>
Parameters
notification
unknownRequiredconfig
unknownRequiredattachmentGenerator
unknownRequiredReturns
Promise
<ReturnedData
>
Implementation of
INotificationService.resendNotification
sendNotification
Abstract
sendNotification(event
, data
, attachmentGenerator
): Promise
<ReturnedData
>
Parameters
event
stringRequireddata
unknownRequiredattachmentGenerator
unknownRequiredReturns
Promise
<ReturnedData
>
Implementation of
INotificationService.sendNotification
shouldRetryTransaction_
Protected
shouldRetryTransaction_(err
): boolean
Parameters
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
boolean
booleanImplementation of
INotificationService.shouldRetryTransaction_
Inherited from
TransactionBaseService.shouldRetryTransaction_
withTransaction
withTransaction(transactionManager?
): AbstractNotificationService
Parameters
transactionManager
EntityManagerReturns
Implementation of
INotificationService.withTransaction