1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! Pure execution service layer for `algocline-core`.
//!
//! This module provides the [`ExecutionService`] trait and all associated value types
//! for the new service layer design. It coexists with the legacy types in
//! `crate::state` and `crate::engine_api` without modifying them (parallel evolution).
//!
//! ## Module structure
//!
//! | Module | Key types |
//! |--------|-----------|
//! | [`session_id`] | [`SessionId`] |
//! | [`spec`] | [`SessionSpec`], [`SpecKind`], [`ScenarioRef`] |
//! | [`state`] | [`ExecutionState`] (v2), [`ExecutionStateTag`], [`ExecutionResult`] |
//! | [`pause`] | [`PauseInfo`], [`PauseKind`], [`PausePrompt`] |
//! | [`resume`] | [`ResumePayload`], [`QueryResponse`], [`ResumeOutcome`], [`TerminalOutcome`] |
//! | [`cancel`] | [`CancelReason`], [`CancelCode`], [`CancelInfo`], [`FailureInfo`], [`FailureKind`] |
//! | [`progress`] | [`ProgressEvent`], [`ObserverHandle`] |
//! | [`error`] | [`SpawnError`], [`StateError`], [`ResumeError`], [`CancelError`], [`ObserveError`], [`AwaitError`], [`ObserverRecvError`] |
//! | [`service`] | [`ExecutionService`] |
//!
//! ## Access path
//!
//! Types in this module are accessed as `algocline_core::execution::Foo`.
//! They are **not** re-exported at the top level of `algocline_core` to avoid
//! naming conflicts with legacy top-level types (e.g., `QueryResponse`).
// Re-export all public items for convenient access via `algocline_core::execution::*`.
pub use ;
pub use ;
pub use ;
pub use ;
pub use ;
pub use ExecutionService;
pub use SessionId;
pub use ;
pub use ;
// Re-export TokenUsage into this namespace so engine-layer code can use
// `algocline_core::execution::TokenUsage` without a separate import.
pub use crateTokenUsage;