Trait timely::dataflow::operators::capture::event::EventIterator
[−]
[src]
pub trait EventIterator<T, D> { fn next(&mut self) -> Option<&Event<T, D>>; }
Iterates over contained Event<T, D>
.
The EventIterator
trait describes types that can iterate over references to events,
and which can be used to replay a stream into a new timely dataflow computation.
Required Methods
Implementations on Foreign Types
impl<T, D> EventIterator<T, D> for Rc<EventLink<T, D>>
[src]
Implementors
impl<T: Abomonation, D: Abomonation, R: Read> EventIterator<T, D> for EventReader<T, D, R>