AnalyticsConfigService
Properties
__configModule__
Record<string, unknown>__container__
anyRequired__moduleDeclaration__
Record<string, unknown>manager_
EntityManagerRequiredtransactionManager_
undefined | EntityManagerRequiredAccessors
activeManager_
Returns
EntityManager
EntityManagerRequiredMethods
atomicPhase_
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.
Parameters
work
(transactionManager: EntityManager) => Promise<TResult>Requiredthe transactional work to be done
isolationOrErrorHandler
IsolationLevel | (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
Promise<TResult>Requiredthe result of the transactional work
create
Creates an analytics config.
Parameters
userId
stringRequiredReturns
delete
Deletes an analytics config.
Parameters
userId
stringRequiredReturns
Promise
Promise<void>Requiredretrieve
Parameters
userId
stringRequiredReturns
shouldRetryTransaction_
Parameters
err
Record<string, unknown> | { code: string }RequiredReturns
boolean
booleanupdate
Updates an analytics config. If the config does not exist, it will be created instead.
Parameters
userId
stringRequiredReturns
withTransaction
Parameters
transactionManager
EntityManagerReturns
Was this section helpful?