Affiliate Marketing
Pls Subscribe this channel Subscribe ® Registered teknosys.in
| S.N. | Propagation & Description |
|---|---|
| 1 | TransactionDefinition.PROPAGATION_MANDATORY Support a current transaction; throw an exception if no current transaction exists. |
| 2 | TransactionDefinition.PROPAGATION_NESTED Execute within a nested transaction if a current transaction exists. |
| 3 | TransactionDefinition.PROPAGATION_NEVER Do not support a current transaction; throw an exception if a current transaction exists. |
| 4 | TransactionDefinition.PROPAGATION_NOT_SUPPORTED Do not support a current transaction; rather always execute non-transactionally. |
| 5 | TransactionDefinition.PROPAGATION_REQUIRED Support a current transaction; create a new one if none exists. |
| 6 | TransactionDefinition.PROPAGATION_REQUIRES_NEW Create a new transaction, suspending the current transaction if one exists. |
| 7 | TransactionDefinition.PROPAGATION_SUPPORTS Support a current transaction; execute non-transactionally if none exists. |
| 8 | TransactionDefinition.TIMEOUT_DEFAULT Use the default timeout of the underlying transaction system, or none if timeouts are not supported. |
Comments