flow
flow copied to clipboard
Exploration of a data-flow programming paradigm
flow initializers (by definition sent from outside a flow) should act like a function sending to the flow, send values one by one, and block (and not send) until the...
``` Running unittests examples/sequence-of-sequences/main.rs (target/debug/examples/sequence_of_sequences-a3af467001d40550) running 1 test 4d3 < 2 6c5,6 < 3 --- > 2 > 2 test test::test_sequence_of_sequences_example ... FAILED failures: ---- test::test_sequence_of_sequences_example stdout ---- Running example:...
When an array is an initializer, currently the entire array is serialized and sent when the initializer is applied. However, only one element should be sent, and the next one...
See generate.rs pub fn write_flow_manifest() This is tied to being a file:// - generalize this to write to a URL, moving the code TODO into the provider and implementing for...
We should be able to get away from the serialization/deserialization of types across the wasm bounday
as per https://component-model.bytecodealliance.org/design/why-component-model.html with a WIT, and could be written in other languages
This page lists some additional size optimization techniques I have not tried so far https://github.com/johnthagen/min-sized-rust
Able to build a new map from a number of other Jasón values and keys, using sources....
Be able to have an initializer on a sub-flow that is an Array input, and then within the sub-flow connect from individual elements in that array. Will require sub-routes on...