You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have a mechanism to create multi-task simulations. This can be a simple language to compose TaskGenerators inspired by BPMN gateways.
It could include:
Then for sequence
And for parallel
All for multiple parallel tasks
Or for inclusive or (run both events, proceed when either completes)
Cond for selection based on a given condition (but what would that condition be? is there a use case for this?)
NoTask or similar for doing nothing
Wait for another simulation??!
It should be easy to compose the futures returned from SimulationActor.task().
We might need an implicit conversion from TaskGenerator to Flow. The hard part is making sure we run ready() at the right time(s).
We should subclass a FlowSimulationActor.
Everything should go under a new com.workflowfm.simulator.flows package.
The text was updated successfully, but these errors were encountered:
It would be nice to have a mechanism to create multi-task simulations. This can be a simple language to compose
TaskGenerators
inspired by BPMN gateways.It could include:
Then
for sequenceAnd
for parallelAll
for multiple parallel tasksOr
for inclusive or (run both events, proceed when either completes)Cond
for selection based on a given condition (but what would that condition be? is there a use case for this?)NoTask
or similar for doing nothingWait
for another simulation??!It should be easy to compose the futures returned from
SimulationActor.task()
.We might need an implicit conversion from
TaskGenerator
toFlow
. The hard part is making sure we runready()
at the right time(s).We should subclass a
FlowSimulationActor
.Everything should go under a new
com.workflowfm.simulator.flows
package.The text was updated successfully, but these errors were encountered: