Skip to main content

WorkflowRuntime

Struct WorkflowRuntime 

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

Non-clone scheduler and display owner for one declared workflow plan.

Implementations§

Source§

impl WorkflowRuntime

Source

pub fn builder() -> WorkflowRuntimeBuilder

Starts an empty builder. At least one phase is mandatory.

Source

pub fn phases(&self) -> &[Phase]

Borrows all registered phases in deterministic declaration order.

Source

pub fn phase(&self, id: impl Into<PhaseId>) -> Option<&Phase>

Borrows one registered phase by stable ID.

Source

pub fn cancellation_token(&self) -> CancellationToken

Returns a cheap token that can request or observe runtime cancellation.

Source

pub fn unique_task_matching( &self, selector: &TaskSelector, ) -> Result<&Task, RuntimeError>

Returns the unique task matching an exact partial selector.

Source

pub fn run_phases<I, P>(self, phases: I) -> Result<RuntimeSummary, RuntimeError>
where I: IntoIterator<Item = P>, P: Into<PhaseId>,

Runs exactly the selected phases; omitted unsatisfied dependencies fail.

Source

pub fn run_phases_exact<I, P>( self, phases: I, ) -> Result<RuntimeSummary, RuntimeError>
where I: IntoIterator<Item = P>, P: Into<PhaseId>,

Runs exactly the selected phases; omitted unsatisfied dependencies fail.

Source

pub fn run_phases_with_dependencies<I, P>( self, phases: I, ) -> Result<RuntimeSummary, RuntimeError>
where I: IntoIterator<Item = P>, P: Into<PhaseId>,

Adds unsatisfied dependencies and runs the deterministic closure.

Trait Implementations§

Source§

impl Debug for WorkflowRuntime

Source§

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

Formats the value using the given formatter. Read more

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> Same for T

Source§

type Output = T

Should always be Self
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.