Skip to main content

ObserverProgressAdvanceTransaction

Struct ObserverProgressAdvanceTransaction 

Source
pub struct ObserverProgressAdvanceTransaction { /* private fields */ }
Expand description

Ownership barrier between a validated progress advance and its durable append.

The aggregate is unreachable while the transaction is pending, so no recovery batch can read the not-yet-durable progress and no other advance can race the fired-arm plan. Consuming Self::commit applies the progress write and removes the fired arm as ONE mutation — after the caller has confirmed the durable append of the progress row, the arm-row deletion, and the wake — and consuming Self::abort returns the aggregate byte-for-byte unchanged, arm still installed, so a failed append never leaves live progress ahead of durable state or a phantom-fired arm.

Implementations§

Source§

impl ObserverProgressAdvanceTransaction

Source

pub const fn conversation_id(&self) -> ConversationId

Returns the conversation whose progress row the durable append writes.

Source

pub const fn presented_progress(&self) -> DeliverySeq

Returns the new hard observer progress for the durable append.

Source

pub const fn fired_arm(&self) -> Option<ObserverRecoveryArm>

Returns the fired-arm plan for the durable append.

Some names the installed arm whose durable row the same append must delete and whose parked rows the same append must wake; None means the conversation carried no arm.

Source

pub fn commit(self) -> (ObserverRecoveryAggregate, Option<ObserverRecoveryArm>)

Applies the advance after a confirmed durable append.

The progress write and the arm removal are one mutation: the returned arm is exactly Self::fired_arm, surrendered so the caller wakes the parked rows it durably committed to waking.

Source

pub fn abort(self) -> ObserverRecoveryAggregate

Cancels a failed durable append; neither progress nor arm changes.

Trait Implementations§

Source§

impl Debug for ObserverProgressAdvanceTransaction

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for ObserverProgressAdvanceTransaction

Source§

impl PartialEq for ObserverProgressAdvanceTransaction

Source§

fn eq(&self, other: &ObserverProgressAdvanceTransaction) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ObserverProgressAdvanceTransaction

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.