-
Notifications
You must be signed in to change notification settings - Fork 15
/
06-while.py
63 lines (40 loc) · 1.38 KB
/
06-while.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from liteflow.core import *
class Hello(StepBody):
def run(self, context: StepExecutionContext) -> ExecutionResult:
print("Hello")
return ExecutionResult.next()
class DoStuff(StepBody):
def __init__(self):
self.my_value = 0
self.your_value = 0
def run(self, context: StepExecutionContext) -> ExecutionResult:
print(f"doing stuff - my value = {self.my_value}")
self.your_value = self.my_value + 1
return ExecutionResult.next()
class Goodbye(StepBody):
def run(self, context: StepExecutionContext) -> ExecutionResult:
print("goodbye")
return ExecutionResult.next()
class MyData:
def __init__(self):
self.value1 = 0
class MyWorkflow(Workflow):
def id(self):
return "MyWorkflow"
def version(self):
return 1
def build(self, builder: WorkflowBuilder):
builder\
.start_with(Hello)\
.while_(lambda data, context: data.value1 < 3)\
.do(lambda do:\
do.start_with(DoStuff)\
.input('my_value', lambda data, context: data.value1)\
.output('value1', lambda step: step.your_value))\
.then(Goodbye)
host = configure_workflow_host()
host.register_workflow(MyWorkflow())
host.start()
wid = host.start_workflow("MyWorkflow", 1, MyData())
input()
host.stop()