Trait timely::dataflow::operators::enterleave::EnterAt [] [src]

pub trait EnterAt<G: Scope, T: Timestamp, D: Data> {
    fn enter_at<'a, F: Fn(&D) -> T + 'static>(
        &self,
        scope: &Child<'a, G, T>,
        initial: F
    ) -> Stream<Child<'a, G, T>, D>; }

Extension trait to move a Stream into a child of its current Scope setting the timestamp for each element.

Required Methods

Moves the Stream argument into a child of its current Scope setting the timestamp for each element by initial.

Examples

use timely::dataflow::scopes::Scope;
use timely::dataflow::operators::{EnterAt, Leave, ToStream};

timely::example(|outer| {
    let stream = (0..9).to_stream(outer);
    let output = outer.scoped::<u32,_,_>(|inner| {
        stream.enter_at(inner, |x| *x).leave()
    });
});

Implementors