arcbox-constants 0.1.6

Shared protocol and runtime constants for ArcBox
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Runtime ensure status: runtime started in this request.
pub const RUNTIME_STARTED: &str = "started";

/// Runtime ensure status: runtime was already available.
pub const RUNTIME_REUSED: &str = "reused";

/// Runtime ensure status: runtime failed or is unavailable.
pub const RUNTIME_FAILED: &str = "failed";

/// Service status: reachable and healthy.
pub const SERVICE_READY: &str = "ready";

/// Service status: not reachable yet.
pub const SERVICE_NOT_READY: &str = "not_ready";

/// Service status: discovered but unhealthy.
pub const SERVICE_ERROR: &str = "error";