Trait timely::dataflow::operators::capture::event::EventPusher [] [src]

pub trait EventPusher<T, D> {
    fn push(&mut self, event: Event<T, D>);
}

Receives Event<T, D> events.

Required Methods

Provides a new Event<T, D> to the pusher.

Implementors