Type Alias StreamingOutput

Source
pub type StreamingOutput<NetworkItem> = Receiver<(usize, NetworkNodeIoChannelArray<NetworkItem>)>;
Expand description

Optional streaming outputs from each operator:

  • The operator can produce a Vec<OutputItem> each time it runs.
  • We push (node_index, Vec<OutputItem>) into an async channel for external consumption in real-time.

Aliased Typeยง

pub struct StreamingOutput<NetworkItem> { /* private fields */ }