📄 asynchronouscommand.java
字号:
package org.jbpm.command;
import org.jbpm.JbpmContext;
/**
* provides extra configuration options for the execution of asynchronous commands.
* Plain commands can also be executed asynchronously.
*/
public class AsynchronousCommand implements Command {
private static final long serialVersionUID = 1L;
int retryCount = 1;
Command command;
public AsynchronousCommand(Command command) {
this.command = command;
}
public Object execute(JbpmContext jbpmContext) throws Exception {
throw new UnsupportedOperationException("sending any command over the message service is not yet supported");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -