logo
pub struct WriteStream<D: Data> { /* private fields */ }
Expand description

A WriteStream allows operators to send data to other operators.

Data is sent via Messages, which are broadcast to operators that are connected to the stream. Messages are rapidly sent to operators within the same node using zero-copy communication. Messages sent across nodes are serialized using abomonation if possible, before falling back to bincode.

Example

The following example shows an operator which sends a sequence of numbers on a WriteStream, and ensures that downstream operators progress by sending a watermark after each number.

struct CounterOperator {}

impl Source<usize> for CounterOperator {
    fn run(&mut self, config: &OperatorConfig, write_stream: &mut WriteStream<usize>) {
        for t in 0..10 {
            let timestamp = Timestamp::Time(vec![t as u64]);
            write_stream
                .send(Message::new_message(timestamp.clone(), t))
                .unwrap();
            write_stream
                .send(Message::new_watermark(timestamp))
                .unwrap();
            thread::sleep(Duration::from_millis(100));
        }
    }
}

Implementations

Get the ID given to the stream by the constructor

Get the name of the stream.

Returns true if a top watermark message was received or the IngestStream failed to set up.

Clears the condition context state.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Sends a messsage to a channel.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more