pub struct BroadcastFlagMapFunction { /* private fields */ }Implementations§
Trait Implementations§
Source§impl CheckpointFunction for BroadcastFlagMapFunction
impl CheckpointFunction for BroadcastFlagMapFunction
fn consult_version( &mut self, context: &FunctionSnapshotContext, _handle: &Option<CheckpointHandle>, ) -> CheckpointId
Source§fn initialize_state(
&mut self,
_context: &FunctionSnapshotContext,
_handle: &Option<CheckpointHandle>,
)
fn initialize_state( &mut self, _context: &FunctionSnapshotContext, _handle: &Option<CheckpointHandle>, )
trigger the method when a
operator initializationSource§fn snapshot_state(
&mut self,
_context: &FunctionSnapshotContext,
) -> Option<CheckpointHandle>
fn snapshot_state( &mut self, _context: &FunctionSnapshotContext, ) -> Option<CheckpointHandle>
trigger the method when the
operator operate a Barrier eventSource§impl FlatMapFunction for BroadcastFlagMapFunction
impl FlatMapFunction for BroadcastFlagMapFunction
fn open(&mut self, context: &Context) -> Result<()>
fn flat_map(&mut self, record: Record) -> Box<dyn Iterator<Item = Record>>
fn close(&mut self) -> Result<()>
fn schema(&self, input_schema: FnSchema) -> FnSchema
fn flat_map_element( &mut self, element: Element, ) -> Box<dyn Iterator<Item = Element>>
Auto Trait Implementations§
impl Freeze for BroadcastFlagMapFunction
impl RefUnwindSafe for BroadcastFlagMapFunction
impl Send for BroadcastFlagMapFunction
impl Sync for BroadcastFlagMapFunction
impl Unpin for BroadcastFlagMapFunction
impl UnwindSafe for BroadcastFlagMapFunction
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> 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