Skip to main content

ResumeCondition

Enum ResumeCondition 

Source
#[non_exhaustive]
pub enum ResumeCondition { Single { waitpoint_key: String, matcher: SignalMatcher, }, OperatorOnly, TimeoutOnly, Composite(CompositeBody), }
Expand description

Declarative resume condition for SuspendArgs::resume_condition.

RFC-013 §2.4 — typed replacement for the SDK’s former ConditionMatcher / resume_condition_json pair.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Single

Single waitpoint-key match with a predicate. matcher is evaluated against every signal delivered to waitpoint_key.

Fields

§waitpoint_key: String
§

OperatorOnly

Operator-only resume — no signal satisfies; only an explicit operator resume closes the waitpoint.

§

TimeoutOnly

Pure-timeout suspension. No signal satisfier; the waitpoint resolves only via timeout_behavior at timeout_at. Requires SuspendArgs::timeout_at to be Some(_) — otherwise the Rust-side validator rejects as timeout_only_without_deadline.

§

Composite(CompositeBody)

Multi-condition composition; RFC-014 defines the body.

Implementations§

Source§

impl ResumeCondition

Source

pub fn all_of_waitpoints<I, S>(waitpoint_keys: I) -> Self
where I: IntoIterator<Item = S>, S: Into<String>,

RFC-014 §10.3 builder — AllOf across N distinct waitpoints, each member a Single { matcher: Wildcard } leaf. Canonical Pattern 3 shape for heterogeneous-subsystem “all fired” semantics (e.g. db-migration-complete + cache-warmed + feature-flag-set).

Callers that need per-waitpoint matchers should construct the tree directly via [ResumeCondition::Composite(CompositeBody::all_of(..))].

Source

pub fn referenced_waitpoint_keys(&self) -> Vec<String>

Collect every distinct waitpoint_key the condition targets. Used at suspend-time to validate the condition’s wp set against SuspendArgs.waitpoints (RFC-014 §5.1 multi-binding cross- check). Order follows tree DFS, de-duplicated preserving first occurrence.

Source

pub fn validate_composite(&self) -> Result<(), CompositeValidationError>

Validate RFC-014 structural invariants on a composite condition. Single / OperatorOnly / TimeoutOnly return Ok — they carry no composite body. Checks cover:

  • AllOf { members: [] } — §5.1 allof_empty_members
  • Count { n: 0 } — §5.1 count_n_zero
  • Count { waitpoints: [] } — §5.1 count_waitpoints_empty
  • Count { n > waitpoints.len(), DistinctWaitpoints } — §5.1 count_exceeds_waitpoint_set
  • depth > MAX_COMPOSITE_DEPTH — §5.1 condition_depth_exceeded

Trait Implementations§

Source§

impl Clone for ResumeCondition

Source§

fn clone(&self) -> ResumeCondition

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ResumeCondition

Source§

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

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

impl<'de> Deserialize<'de> for ResumeCondition

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for ResumeCondition

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for ResumeCondition

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for ResumeCondition

Source§

impl StructuralPartialEq for ResumeCondition

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,