mirror of
https://gitee.com/langsisi_admin/serein-flow
synced 2026-03-20 00:06:45 +08:00
整理了Serein.Library项目类文件,IDynamicContext、DynamicContext接口名称及实现类改为IFlowContext、FlowContext,使其与流程其它接口类命名风格统一。
This commit is contained in:
@@ -27,14 +27,14 @@ namespace Net462DllTest.LogicControl
|
||||
|
||||
#region 初始化
|
||||
[NodeAction(NodeType.Loading)] // Loading 初始化完成已注入依赖项,可以开始逻辑上的操作
|
||||
public void Loading(IDynamicContext context)
|
||||
public void Loading(IFlowContext context)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
[NodeAction(NodeType.Exit)] // 流程结束时自动执行
|
||||
public void Exit(IDynamicContext context)
|
||||
public void Exit(IFlowContext context)
|
||||
{
|
||||
MyPlc.Close();
|
||||
MyPlc.CancelAllTrigger();
|
||||
|
||||
Reference in New Issue
Block a user