Trait timely::dataflow::operators::delay::Delay [] [src]

pub trait Delay<G: Scope, D: Data> {
    fn delay<F: Fn(&D, &G::Timestamp) -> G::Timestamp + 'static>(&self, F) -> Self;
    fn delay_batch<F: Fn(&G::Timestamp) -> G::Timestamp + 'static>(&self, F) -> Self;
}

Required Methods

fn delay<F: Fn(&D, &G::Timestamp) -> G::Timestamp + 'static>(&self, F) -> Self

fn delay_batch<F: Fn(&G::Timestamp) -> G::Timestamp + 'static>(&self, F) -> Self

Implementors