rrq-runner 0.11.1

RRQ runner runtime for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod parent_guard;
pub mod registry;
pub mod runtime;
pub mod telemetry;
pub mod types;

pub use registry::Registry;
pub use runtime::{RunnerRuntime, parse_tcp_socket, run_tcp, run_tcp_with};
pub use telemetry::{NoopTelemetry, Telemetry};
pub use types::{
    ExecutionContext, ExecutionError, ExecutionOutcome, ExecutionRequest, OutcomeStatus,
};