feature #I4HGOW 支持链路的前置和后置节点

This commit is contained in:
bryan31
2021-11-10 16:47:52 +08:00
parent 448fa82023
commit ecfebfdc19
20 changed files with 346 additions and 49 deletions

View File

@@ -0,0 +1 @@
liteflow.rule-source=preAndFinally/flow.xml

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<flow>
<chain name="chain1">
<pre value="p1,p2"/>
<then value="a,b,c"/>
<finally value="f1,f2"/>
</chain>
<chain name="chain2">
<then value="a"/>
<pre value="p1,p2"/>
<finally value="f1,f2"/>
<then value="b,c"/>
</chain>
<chain name="chain3">
<pre value="p1,p2"/>
<then value="a,d,c"/>
<finally value="f1,f2"/>
</chain>
</flow>