Package org.openspaces.events
Annotation Interface TransactionalEvent
- Author:
- kimchy
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionorg.springframework.transaction.annotation.IsolationThe transaction isolation level.org.springframework.transaction.annotation.PropagationThe transaction propagation type.intThe timeout for this transaction (in seconds).A reference to the actual transaction manager.
-
Element Details
-
propagation
org.springframework.transaction.annotation.Propagation propagationThe transaction propagation type.Defaults to
Propagation.REQUIRED.- Default:
- REQUIRED
-
isolation
org.springframework.transaction.annotation.Isolation isolationThe transaction isolation level.Defaults to
Isolation.DEFAULT.- Default:
- DEFAULT
-
timeout
int timeoutThe timeout for this transaction (in seconds).Defaults to the default timeout of the underlying transaction system.
- Default:
- -1
-
transactionManager
String transactionManagerA reference to the actual transaction manager. Only needed if there is more than one transaction manager in the context. If there is only one, will use it by default.- Default:
- ""
-