Pierre Lecerf
Pierre Lecerf
Big evolution of both the graph model and the compiler/runtime implementations. * stream nodes should be able to cascade into other streams * as a result, node types involved with...
Consider moving away from the `runAsPipeline`, `runAsParallel` methods, and instead provide compiler helpers : So instead of: ```java var flow = /* Flow.from(x).pipe(etc)... */ Flow.runAsPipeline(flow); ``` Decompose it so that:...
Some work could be done in order to make Input handling more flexible. As it stands inputs can only be provided by way of initiating a flow: ```java var recipient...
As a generalization of https://github.com/noleme/noleme-flow/issues/16 , we should start considering actors as more generic functions with as few ties as possible to the `noleme-flow` library. These contracts should only provide...
The `after` flow API came from an older API design and works poorly within the current flow API. It encourages blocking flow designs and puts unnecessary pressure on the runtime...
_Migrated over from https://github.com/lumio-medical/lumio-flow/issues/6_ Add the ability to make nodes retry-able. Nodes should be made retry-able if certain conditions are met such as * a Predicate matching over the return...