beritec / fdotoolbox

Automatically exported from code.google.com/p/fdotoolbox
0 stars 1 forks source link

Sequential Process flow control #334

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Sequential Processes do not support flow control, that means operations are run 
in the order specified, and if a road block is hit the entire process will stop.

To increase greater flexiblity, introduce a new element OnComplete with
2 attributes:

 1. value : The return value of the process to check for
 2. jump: The name of the task to jump to if the process returned this value

If a process returns a value not specified by any of the OnComplete elements, 
it will jump to the next sequential task.

Of course operations currently do not have names, so we will extend the 
SequentialOperation to include a "name" attribute. Name attributes must be 
unique.

Original issue reported on code.google.com by jumpinja...@gmail.com on 25 Nov 2010 at 9:56

GoogleCodeExporter commented 8 years ago

Original comment by jumpinja...@gmail.com on 16 Dec 2010 at 2:11