pub struct MergeBatcher<Input, C, M, T>
where C: ContainerBuilder<Container = M::Chunk> + Default, M: Merger<Time = 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<RefOrMut<'a, Input>>, M: Merger<Time = T>, T: Timestamp,

source§

fn push_container(&mut self, container: RefOrMut<'_, Input>)

Push a container of data into this merge batcher. Updates the internal chain structure if needed.

source§

fn frontier(&mut self) -> AntichainRef<'_, T>

The frontier of elements remaining after the most recent call to self.seal.

§

type Input = Input

Type pushed into the batcher.
§

type Output = <M as Merger>::Output

Type produced by the batcher.
§

type Time = T

Times at which batches are formed.
source§

fn new( logger: Option<Logger<DifferentialEvent, WorkerIdentifier>>, operator_id: usize ) -> Self

Allocates a new empty batcher.
source§

fn seal<B: Builder<Input = Self::Output, Time = Self::Time>>( &mut self, upper: Antichain<T> ) -> B::Output

Returns all updates not greater or equal to an element of upper.
source§

impl<Input, C, M, T> Drop for MergeBatcher<Input, C, M, T>
where C: ContainerBuilder<Container = M::Chunk> + Default, M: Merger<Time = T>,

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<Input, C, M, T> Freeze for MergeBatcher<Input, C, M, T>
where C: Freeze, M: Freeze,

§

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>
where C: Unpin, M: Unpin, Input: Unpin, <M as Merger>::Chunk: Unpin, T: Unpin,

§

impl<Input, C, M, T> !UnwindSafe for MergeBatcher<Input, C, M, T>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<'a, S, T> Semigroup<&'a S> for T
where T: Semigroup<S>,

source§

fn plus_equals(&mut self, rhs: &&'a S)

The method of std::ops::AddAssign, for types that do not implement AddAssign.
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.