Trait differential_dataflow::operators::arrange::arrangement::Arrange
source · pub trait Arrange<G, C>{
// Required method
fn arrange_named<Ba, Bu, Tr>(
&self,
name: &str,
) -> Arranged<G, TraceAgent<Tr>>
where Ba: Batcher<Input = C, Time = G::Timestamp> + 'static,
Bu: Builder<Time = G::Timestamp, Input = Ba::Output, Output = Tr::Batch>,
Tr: Trace<Time = G::Timestamp> + 'static,
Tr::Batch: Batch;
// Provided method
fn arrange<Ba, Bu, Tr>(&self) -> Arranged<G, TraceAgent<Tr>>
where Ba: Batcher<Input = C, Time = G::Timestamp> + 'static,
Bu: Builder<Time = G::Timestamp, Input = Ba::Output, Output = Tr::Batch>,
Tr: Trace<Time = G::Timestamp> + 'static,
Tr::Batch: Batch { ... }
}
Expand description
A type that can be arranged as if a collection of updates.
Required Methods§
sourcefn arrange_named<Ba, Bu, Tr>(&self, name: &str) -> Arranged<G, TraceAgent<Tr>>
fn arrange_named<Ba, Bu, Tr>(&self, name: &str) -> Arranged<G, TraceAgent<Tr>>
Arranges updates into a shared trace, with a supplied name.
Provided Methods§
Object Safety§
This trait is not object safe.