Flowable源码地址:https://github.com/flowable/flowable-engine
Flowable-6.7.2 源码注释地址:https://github.com/solojin/flowable-6.7.2-annotated
事务监听器,包路径:org.flowable.common.engine.impl.cfg
JobAddedTransactionListener 作业添加事务监听器
/**
* 作业添加事务监听器
*
* @author Tijs Rademakers
* @author Joram Barrez
*/
public class JobAddedTransactionListener implements TransactionListener {
private static final Logger LOGGER = LoggerFactory.getLogger(JobAddedTransactionListener.class);
protected JobInfo job;
protected AsyncExecutor asyncExecutor;
protected CommandExecutor commandExecutor;
public JobAddedTransactionListener(JobInfo job, AsyncExecutor asyncExecutor, CommandExecutor