Struct mz_service::frontiers::FrontierReconcile
source · [−]pub struct FrontierReconcile<T> {
frontiers: HashMap<GlobalId, FrontierState<T>>,
epoch: u64,
}Expand description
Reconciles a set of frontiers that are each associated with a GlobalId.
Fields
frontiers: HashMap<GlobalId, FrontierState<T>>epoch: u64Implementations
sourceimpl<T> FrontierReconcile<T> where
T: Timestamp + Copy,
impl<T> FrontierReconcile<T> where
T: Timestamp + Copy,
sourcepub fn bump_epoch(&mut self)
pub fn bump_epoch(&mut self)
Bumps the internal epoch to account for a new controller.
After calling this method, absorb will no longer return any changes.
FrontierReconcile::start_tracking must be called again for any
frontiers that remain of interest.
sourcepub fn start_tracking(&mut self, id: GlobalId) -> ChangeBatch<T>
pub fn start_tracking(&mut self, id: GlobalId) -> ChangeBatch<T>
Starts tracking the frontier for an ID.
If the ID is already tracked, returns a change batch that describes how to update the minimum frontier to the currently tracked frontier.
sourcepub fn stop_tracking(&mut self, id: GlobalId) -> Option<MutableAntichain<T>>
pub fn stop_tracking(&mut self, id: GlobalId) -> Option<MutableAntichain<T>>
Stops tracking the frontier for an ID.
Returns the tracked frontier for the ID, if the ID was tracked.
sourcepub fn is_tracked(&self, id: GlobalId) -> bool
pub fn is_tracked(&self, id: GlobalId) -> bool
Reports whether the ID is currently tracked.
sourcepub fn absorb(&mut self, frontiers: &mut Vec<(GlobalId, ChangeBatch<T>)>)
pub fn absorb(&mut self, frontiers: &mut Vec<(GlobalId, ChangeBatch<T>)>)
Absorbs new frontiers and mutates the provided frontiers to reflect the tracked state.
Trait Implementations
sourceimpl<T: Debug> Debug for FrontierReconcile<T>
impl<T: Debug> Debug for FrontierReconcile<T>
sourceimpl<T> Default for FrontierReconcile<T>
impl<T> Default for FrontierReconcile<T>
sourcefn default() -> FrontierReconcile<T>
fn default() -> FrontierReconcile<T>
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<T> RefUnwindSafe for FrontierReconcile<T> where
T: RefUnwindSafe,
impl<T> Send for FrontierReconcile<T> where
T: Send,
impl<T> Sync for FrontierReconcile<T> where
T: Sync,
impl<T> Unpin for FrontierReconcile<T> where
T: Unpin,
impl<T> UnwindSafe for FrontierReconcile<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> FutureExt for T
impl<T> FutureExt for T
sourcefn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
sourcefn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message T in a tonic::Request
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<P, R> ProtoType<R> for P where
R: RustType<P>,
impl<P, R> ProtoType<R> for P where
R: RustType<P>,
sourcefn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See RustType::from_proto.
sourcefn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See RustType::into_proto.
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more