ERnsTL
ERnsTL
* https://fasterthanli.me/articles/so-you-want-to-live-reload-rust * https://michael-f-bryan.github.io/rust-ffi-guide/dynamic_loading.html#loading-the-contrived-example * http://jakegoulding.com/rust-ffi-omnibus/ * dlopen() a library and start a process() function for handling an IP for this component. DONE. * Problem is that: * the process...
* Python, JavaScript etc. cannot really participate since they cannot produce .so files: * https://stackoverflow.com/questions/23036949/create-dynamic-library-so-file-from-python-code * possible per Cython: https://stackoverflow.com/questions/11436484/how-to-protect-and-compile-python-source-code-into-a-so-library * but requires code adaption * But we can create...
* Idea: https://github.com/pola-rs/polars * Made using pyo3 which allows creating native Python extension modules in Rust
* is it really neccessary to send back the full payload? * seems like this is the way: https://github.com/flowbased/fbp-client/blob/5ecaaa6e40f0ab2b66008dc49574e271564186b8/spec/dummy.js#L330 * but that is just a fake Runtime impl * fbp-protocol...
* currently panicks
* currently it seems impossible to add graph inports and outports via the noflo-ui * but if they are defined from the side of the runtime, then noflo-ui renders them...
* currently can just connect and will receive all runtime:packet's on graph outports
To reproduce: * Put 2 nodes into the graph, create an edge between the two. * mark that edge, delete it. * Problem: noflo-ui sends removeedge, but then a changeedge...
* if it makes sense to have component construction in ComponentLibrary * currently all is done in runtime.start() ... much should be done in ComponentLibrary and then handed over to...