Context
A context used to share resources, such as transaction manager, between the application and the module.
Type parameters
TManager
objectRequiredtransactionManager
TManagerAn instance of a transaction manager of type
TManager
, which is a typed parameter passed to the context to specify the type of the transactionManager
.manager
TManagerAn instance of a manager, typically an entity manager, of type
TManager
, which is a typed parameter passed to the context to specify the type of the manager
.isolationLevel
stringA string indicating the isolation level of the context. Possible values are
READ UNCOMMITTED
, READ COMMITTED
, REPEATABLE READ
, or SERIALIZABLE
.enableNestedTransactions
booleanA boolean value indicating whether nested transactions are enabled.
transactionId
stringA string indicating the ID of the current transaction.
Was this section helpful?