pub struct MergeBatcher<Input, C, M>{ /* private fields */ }
Expand description
Creates batches from unordered tuples.
Trait Implementations§
source§impl<Input, C, M> Batcher for MergeBatcher<Input, C, M>where
C: ContainerBuilder<Container = M::Chunk> + Default + for<'a> PushInto<&'a mut Input>,
M: Merger,
M::Time: Timestamp,
impl<Input, C, M> Batcher for MergeBatcher<Input, C, M>where
C: ContainerBuilder<Container = M::Chunk> + Default + for<'a> PushInto<&'a mut Input>,
M: Merger,
M::Time: 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<'_, M::Time>
fn frontier(&mut self) -> AntichainRef<'_, M::Time>
The frontier of elements remaining after the most recent call to self.seal
.
Auto Trait Implementations§
impl<Input, C, M> Freeze for MergeBatcher<Input, C, M>
impl<Input, C, M> !RefUnwindSafe for MergeBatcher<Input, C, M>
impl<Input, C, M> !Send for MergeBatcher<Input, C, M>
impl<Input, C, M> !Sync for MergeBatcher<Input, C, M>
impl<Input, C, M> Unpin for MergeBatcher<Input, C, M>
impl<Input, C, M> !UnwindSafe for MergeBatcher<Input, C, M>
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
.