提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.bpm.framework.flowable.core.listener.demo.exection; |
H |
2 |
|
|
3 |
import lombok.extern.slf4j.Slf4j; |
|
4 |
import org.flowable.engine.delegate.DelegateExecution; |
|
5 |
import org.flowable.engine.delegate.JavaDelegate; |
|
6 |
|
|
7 |
/** |
|
8 |
* 类型为 class 的 ExecutionListener 监听器示例 |
|
9 |
* |
|
10 |
* @author iailab |
|
11 |
*/ |
|
12 |
@Slf4j |
|
13 |
public class DemoDelegateClassExecutionListener implements JavaDelegate { |
|
14 |
|
|
15 |
@Override |
|
16 |
public void execute(DelegateExecution execution) { |
|
17 |
log.info("[execute][execution({}) 被调用!变量有:{}]", execution.getId(), |
|
18 |
execution.getCurrentFlowableListener().getFieldExtensions()); |
|
19 |
} |
|
20 |
|
|
21 |
} |