疯狂的狮子Li
2024-05-31 07adf67dfc6f9f6b9bc4d8443c4a7660c19c91a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.dromara.workflow.flowable.strategy;
 
 
/**
 * 流程任务监听
 *
 * @author may
 * @date 2023-12-27
 */
public interface FlowTaskEventHandler {
 
    /**
     * 执行办理任务监听
     *
     * @param taskId      任务ID
     * @param businessKey 业务id
     */
    void handleTask(String taskId, String businessKey);
}