“用户任务”节点可以设置监听器。
监听器分类
监听器分为执行监听器(execution listener)和任务监听器(task listener)。
...
- https://docs.camunda.org/manual/7.14/user-guide/process-engine/delegation-code/
- https://tkjohn.github.io/flowable-userguide/#executionListeners
- https://tkjohn.github.io/flowable-userguide/#taskListeners
- https://docs.camunda.org/javadoc/camunda-bpm-platform/7.14/
监听器应用-Java类
执行监听器
- 扩展包中编写执行监听器类,实现ExecutionListener接口。
...