pub struct ProxyReduceTactic<T, Bk> { /* private fields */ }Expand description
A proxy-space ReduceTactic: matches input and output records by key_hash.
Implementations§
Source§impl<T, Bk> ProxyReduceTactic<T, Bk>
impl<T, Bk> ProxyReduceTactic<T, Bk>
Trait Implementations§
Source§impl<B1, B2, Bk> ReduceTactic<B1, B2> for ProxyReduceTactic<B1::Time, Bk>
impl<B1, B2, Bk> ReduceTactic<B1, B2> for ProxyReduceTactic<B1::Time, Bk>
Source§fn retire(
&mut self,
source_batches: Vec<B1>,
output_batches: Vec<B2>,
input_batches: Vec<B1>,
lower: &Antichain<B1::Time>,
upper: &Antichain<B1::Time>,
held: &Antichain<B1::Time>,
) -> (Vec<(B1::Time, B2)>, Antichain<B1::Time>)
fn retire( &mut self, source_batches: Vec<B1>, output_batches: Vec<B2>, input_batches: Vec<B1>, lower: &Antichain<B1::Time>, upper: &Antichain<B1::Time>, held: &Antichain<B1::Time>, ) -> (Vec<(B1::Time, B2)>, Antichain<B1::Time>)
Retire the interval
[lower, upper), producing the output batches it informs. Read moreAuto Trait Implementations§
impl<T, Bk> Freeze for ProxyReduceTactic<T, Bk>where
Bk: Freeze,
impl<T, Bk> RefUnwindSafe for ProxyReduceTactic<T, Bk>where
Bk: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, Bk> Send for ProxyReduceTactic<T, Bk>
impl<T, Bk> Sync for ProxyReduceTactic<T, Bk>
impl<T, Bk> Unpin for ProxyReduceTactic<T, Bk>where
Bk: Unpin,
impl<T, Bk> UnsafeUnpin for ProxyReduceTactic<T, Bk>where
Bk: UnsafeUnpin,
impl<T, Bk> UnwindSafe for ProxyReduceTactic<T, Bk>where
Bk: UnwindSafe,
T: RefUnwindSafe,
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§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.