pub trait Exchange<D> {
// Required method
fn exchange(&self, route: impl FnMut(&D) -> u64 + 'static) -> Self;
}
Expand description
Exchange records between workers.
Required Methods§
sourcefn exchange(&self, route: impl FnMut(&D) -> u64 + 'static) -> Self
fn exchange(&self, route: impl FnMut(&D) -> u64 + 'static) -> Self
Exchange records between workers.
The closure supplied should map a reference to a record to a u64
,
whose value determines to which worker the record will be routed.
Examples
use timely::dataflow::operators::{ToStream, Exchange, Inspect};
timely::example(|scope| {
(0..10).to_stream(scope)
.exchange(|x| *x)
.inspect(|x| println!("seen: {:?}", x));
});
Object Safety§
This trait is not object safe.