zenoh-flow-nodes 0.6.0-alpha

Internal crate for Zenoh-Flow.
Documentation

This crate exposes the traits and structures necessary to create Zenoh-Flow nodes.

Items not exposed in the prelude are meant for internal usage within the Zenoh-Flow project.

[prelude]

Application developers wishing to create a data flow should include the [prelude] in their code-base as it regroups all the required structures and traits:

use zenoh_flow_nodes::prelude::*;

Next would be to implement, as different shared libraries, at least a Source, a Sink and possibly some Operators. See their respective documentation for examples.