Trait dataflow::replay::MzReplay[][src]

pub trait MzReplay<T: Timestamp, D: Data>: Sized {
    fn mz_replay<S: Scope<Timestamp = T>>(
        self,
        scope: &mut S,
        name: &str,
        perid: Duration,
        rc_activator: RcActivator
    ) -> Stream<S, D>; }
Expand description

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

Required methods

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

The period argument allows the specification of a re-activation period, where the operator will re-activate itself every so often.

Implementors