pub struct MergeBatcher<Input, C, M, T>{ /* private fields */ }
Expand description
Creates batches from unordered tuples.
Trait Implementations§
source§impl<Input, C, M, T> Batcher for MergeBatcher<Input, C, M, T>where
C: ContainerBuilder<Container = M::Chunk> + Default + for<'a> PushInto<&'a mut Input>,
M: Merger<Time = T>,
T: Timestamp,
impl<Input, C, M, T> Batcher for MergeBatcher<Input, C, M, T>where
C: ContainerBuilder<Container = M::Chunk> + Default + for<'a> PushInto<&'a mut Input>,
M: Merger<Time = T>,
T: Timestamp,
source§fn push_container(&mut self, container: &mut Input)
fn push_container(&mut self, container: &mut Input)
Push a container of data into this merge batcher. Updates the internal chain structure if needed.
source§fn frontier(&mut self) -> AntichainRef<'_, T>
fn frontier(&mut self) -> AntichainRef<'_, T>
The frontier of elements remaining after the most recent call to self.seal
.
source§fn new(
logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>,
operator_id: usize,
) -> Self
fn new( logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>, operator_id: usize, ) -> Self
Allocates a new empty batcher.
Auto Trait Implementations§
impl<Input, C, M, T> Freeze for MergeBatcher<Input, C, M, T>
impl<Input, C, M, T> !RefUnwindSafe for MergeBatcher<Input, C, M, T>
impl<Input, C, M, T> !Send for MergeBatcher<Input, C, M, T>
impl<Input, C, M, T> !Sync for MergeBatcher<Input, C, M, T>
impl<Input, C, M, T> Unpin for MergeBatcher<Input, C, M, T>
impl<Input, C, M, T> !UnwindSafe for MergeBatcher<Input, C, M, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign
, for types that do not implement AddAssign
.