📄 undoableactionhandler.java
字号:
package org.jbpm.delegation;
/**
* is an ActionHandler that allows to perform compensating actions when a user
* undoes a process instance.
*
* <p>When a process instance is undone, all variable updates will be undone
* automatically. When the execute method of an ActionHandler sets the value
* of a variable, this will be done automatic after the engine calls the undo
* method.</p>
*/
public interface UndoableActionHandler extends ActionHandler {
/**
* performs the compensating transaction for the execute method from the ActionHandler.
*/
void undo( ExecutionContext executionContext );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -