All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yomahub.liteflow.aop.ICmpAroundAspect Maven / Gradle / Ivy

The newest version!
/**
 * 

Title: liteflow

*

Description: 轻量级的组件式流程框架

* * @author Bryan.Zhang * @email [email protected] * @Date 2020/10/22 */ package com.yomahub.liteflow.aop; import com.yomahub.liteflow.core.NodeComponent; import com.yomahub.liteflow.slot.Slot; /** * 全局组件拦截器接口 实现这个接口并注入到spring上下文即可 * * @author Bryan.Zhang */ public interface ICmpAroundAspect { void beforeProcess(NodeComponent cmp); void afterProcess(NodeComponent cmp); void onSuccess(NodeComponent cmp); void onError(NodeComponent cmp, Exception e); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy