Flowswhile
Flowswhile is a programming construct that combines aspects of flow-based programming with the iterative control flow of a while loop. In flowswhile, a block of operations defines a data flow graph that is evaluated repeatedly as long as a condition remains true.
Execution in flowswhile centers on the cycle of checking the condition and then executing the defined flows.
Syntax and example are typically expressed in pseudocode, since flowswhile is a theoretical construct used in
Relationship to other concepts: flowswhile sits between conventional imperative loops and dataflow-oriented languages. It highlights parallelism
See also: flow-based programming, dataflow languages, reactive programming.