Interrupting
val MySignal = SignalDef[MyRequest, MyResponse]()
val doA = WIO.pure(MyState(1)).autoNamed
val doB = WIO.pure(MyState(1)).autoNamed
val interruption =
WIO.interruption
.throughSignal(MySignal)
.handleSync((state, request) => MyEvent())
.handleEvent((state, event) => MyState(0))
.produceResponse((state, event) => MyResponse())
.autoNamed()
.andThen(_ >>> doB)
val interruptedThroughSignal = doA.interruptWith(interruption)
- Flowchart
- BPMN
- Model
{
"base" : {
"meta" : {
"name" : "Do A",
"error" : null
},
"_type" : "Pure"
},
"trigger" : {
"meta" : {
"signalName" : "My Request",
"operationName" : "Interruption",
"error" : null
},
"_type" : "HandleSignal"
},
"handler" : {
"meta" : {
"name" : "Do B",
"error" : null
},
"_type" : "Pure"
},
"_type" : "Interruptible"
}