pub enum FlowActorMessage {
Drain,
Wake,
Loaded {
outcome: Result<(Vec<Arc<Cdc>>, CommitVersion)>,
},
Tick,
Sample,
PublishRestoredFrontiers,
UpdateSources {
source_objects: Arc<BTreeSet<ObjectId>>,
completeness_objects: Option<Arc<BTreeSet<u64>>>,
},
SliceCommitted {
advance_to: CommitVersion,
more: bool,
result: Result<()>,
committed: Option<(CommitVersion, Pending)>,
},
TickCommitted {
result: Result<()>,
committed: Option<(CommitVersion, Pending)>,
},
Stop {
delete_checkpoint: bool,
reply: Box<dyn FnOnce() + Send>,
},
}Variants§
Drain
Wake
Loaded
Tick
Sample
PublishRestoredFrontiers
UpdateSources
SliceCommitted
TickCommitted
Stop
Auto Trait Implementations§
impl !RefUnwindSafe for FlowActorMessage
impl !Sync for FlowActorMessage
impl !UnwindSafe for FlowActorMessage
impl Freeze for FlowActorMessage
impl Send for FlowActorMessage
impl Unpin for FlowActorMessage
impl UnsafeUnpin for FlowActorMessage
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