pub trait EventIterator<T, C> {
// Required method
fn next(&mut self) -> Option<&Event<T, C>>;
}
Expand description
Iterates over contained Event<T, C>
.
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.
This method is not simply an iterator because of the lifetime in the result.