pub enum LateEventDecision {
Drop,
Process(StreamEvent),
SideOutput(StreamEvent),
Recompute(StreamEvent),
}Expand description
Decision for how to handle a late event
Variants§
Drop
Drop the event
Process(StreamEvent)
Process the event normally
SideOutput(StreamEvent)
Route to side output
Recompute(StreamEvent)
Recompute affected windows
Trait Implementations§
Source§impl Clone for LateEventDecision
impl Clone for LateEventDecision
Source§fn clone(&self) -> LateEventDecision
fn clone(&self) -> LateEventDecision
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LateEventDecision
impl RefUnwindSafe for LateEventDecision
impl Send for LateEventDecision
impl Sync for LateEventDecision
impl Unpin for LateEventDecision
impl UnwindSafe for LateEventDecision
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