pub struct WorkflowRuntime<'a> { /* private fields */ }Expand description
Deterministic minimal runtime for workflow execution.
Implementations§
Source§impl<'a> WorkflowRuntime<'a>
impl<'a> WorkflowRuntime<'a>
Sourcepub fn new(
definition: WorkflowDefinition,
llm_executor: &'a dyn LlmExecutor,
tool_executor: Option<&'a dyn ToolExecutor>,
options: WorkflowRuntimeOptions,
) -> Self
pub fn new( definition: WorkflowDefinition, llm_executor: &'a dyn LlmExecutor, tool_executor: Option<&'a dyn ToolExecutor>, options: WorkflowRuntimeOptions, ) -> Self
Creates a runtime with host-provided LLM and tool adapters.
Sourcepub async fn execute(
&self,
input: Value,
cancellation: Option<&dyn CancellationSignal>,
) -> Result<WorkflowRunResult, WorkflowRuntimeError>
pub async fn execute( &self, input: Value, cancellation: Option<&dyn CancellationSignal>, ) -> Result<WorkflowRunResult, WorkflowRuntimeError>
Executes a workflow deterministically from start to end.
Sourcepub async fn execute_resume_from_failure(
&self,
checkpoint: &WorkflowCheckpoint,
cancellation: Option<&dyn CancellationSignal>,
) -> Result<WorkflowRunResult, WorkflowRuntimeError>
pub async fn execute_resume_from_failure( &self, checkpoint: &WorkflowCheckpoint, cancellation: Option<&dyn CancellationSignal>, ) -> Result<WorkflowRunResult, WorkflowRuntimeError>
Resumes execution from a checkpoint created after a node failure.
Auto Trait Implementations§
impl<'a> Freeze for WorkflowRuntime<'a>
impl<'a> !RefUnwindSafe for WorkflowRuntime<'a>
impl<'a> Send for WorkflowRuntime<'a>
impl<'a> Sync for WorkflowRuntime<'a>
impl<'a> Unpin for WorkflowRuntime<'a>
impl<'a> UnsafeUnpin for WorkflowRuntime<'a>
impl<'a> !UnwindSafe for WorkflowRuntime<'a>
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> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request