Package org.activiti.engine.delegate
Interface TransactionDependentExecutionListener
-
- All Superinterfaces:
BaseExecutionListener,Serializable
- All Known Implementing Classes:
ClassDelegate,DelegateExpressionTransactionDependentExecutionListener
public interface TransactionDependentExecutionListener extends BaseExecutionListener
-
-
Field Summary
Fields Modifier and Type Field Description static StringON_TRANSACTION_BEFORE_COMMITstatic StringON_TRANSACTION_COMMITTEDstatic StringON_TRANSACTION_ROLLED_BACK-
Fields inherited from interface org.activiti.engine.delegate.BaseExecutionListener
EVENTNAME_END, EVENTNAME_START, EVENTNAME_TAKE
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotify(String processInstanceId, String executionId, FlowElement flowElement, Map<String,Object> executionVariables, Map<String,Object> customPropertiesMap)
-
-
-
Field Detail
-
ON_TRANSACTION_BEFORE_COMMIT
static final String ON_TRANSACTION_BEFORE_COMMIT
- See Also:
- Constant Field Values
-
ON_TRANSACTION_COMMITTED
static final String ON_TRANSACTION_COMMITTED
- See Also:
- Constant Field Values
-
ON_TRANSACTION_ROLLED_BACK
static final String ON_TRANSACTION_ROLLED_BACK
- See Also:
- Constant Field Values
-
-