canic-core 0.21.6

Canic — a canister orchestration and management toolkit for the Internet Computer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::ops::runtime::ready::ReadyOps;

// Internal readiness barrier for bootstrap synchronization.
// Not a public diagnostic or state view.
///
/// ReadyApi
///

pub struct ReadyApi;

impl ReadyApi {
    #[must_use]
    pub fn is_ready() -> bool {
        ReadyOps::is_ready()
    }
}