pub struct FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut> { /* private fields */ }Expand description
Handed to a FixedKeyProcessor::process. The only forward re-attaches the
(unchanged) key, so a fixed-key processor cannot accidentally repartition. All
other accessors delegate verbatim to the underlying ProcessorContext.
Implementations§
Source§impl<'a, 'ctx, 'd, K, VOut> FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
impl<'a, 'ctx, 'd, K, VOut> FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
Sourcepub fn forward(&mut self, record: FixedKeyRecord<K, VOut>)
pub fn forward(&mut self, record: FixedKeyRecord<K, VOut>)
Forward a record downstream, re-attaching the (unchanged) key. Mirrors the
JVM FixedKeyProcessorContext.forward(FixedKeyRecord).
Sourcepub fn get_state_store<K2: Send + Sync + 'static, V2: Send + 'static>(
&mut self,
name: &str,
) -> Option<&mut dyn KeyValueStore<K2, V2>>
pub fn get_state_store<K2: Send + Sync + 'static, V2: Send + 'static>( &mut self, name: &str, ) -> Option<&mut dyn KeyValueStore<K2, V2>>
Access a connected key/value state store, typed. Delegates to
ProcessorContext::get_state_store. (Window/session-store accessors are
omitted: no DSL path connects those to a process_values node yet.)
Sourcepub fn record_context(&self) -> &RecordContext
pub fn record_context(&self) -> &RecordContext
Metadata of the source record currently being processed.
Auto Trait Implementations§
impl<'a, 'ctx, 'd, K, VOut> !RefUnwindSafe for FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
impl<'a, 'ctx, 'd, K, VOut> !Sync for FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
impl<'a, 'ctx, 'd, K, VOut> !UnwindSafe for FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
impl<'a, 'ctx, 'd, K, VOut> Freeze for FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
impl<'a, 'ctx, 'd, K, VOut> Send for FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
impl<'a, 'ctx, 'd, K, VOut> Unpin for FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
impl<'a, 'ctx, 'd, K, VOut> UnsafeUnpin for FixedKeyProcessorContext<'a, 'ctx, 'd, K, VOut>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which can then be further
downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
impl<T> Fruit for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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 more