Trait timely::dataflow::operators::capture::replay::Replay [] [src]

pub trait Replay<T: Timestamp, D: Data> {
    fn replay_into<S: Scope<Timestamp = T>>(self, scope: &mut S) -> Stream<S, D>;
}

Replay a capture stream into a scope with the same timestamp.

Required Methods

Replays self into the provided scope, as a Stream<S, D>.

Implementors