Skip to content
广告❤️成为赞助商

任务创建拦截器

流程任务创建拦截器,该方法用于拦截流程任务创建前后加入需要处理业务逻辑。

  • 实现流程任务创建拦截器接口 TaskCreateInterceptor 默认前置 before 拦截器不处理,需要处理子类重写该方法。
java
public interface TaskCreateInterceptor {

    /**
     * 拦截前置处理方法
     *
     * @param flowLongContext 流程引擎上下文
     * @param execution       执行对象
     */
    default void before(FlowLongContext flowLongContext, Execution execution) {
        // 默认不处理
    }

    /**
     * 拦截后置处理方法
     *
     * @param flowLongContext 流程引擎上下文
     * @param execution       执行对象
     */
    void after(FlowLongContext flowLongContext, Execution execution);
}

更适合中国人的工作流引擎