meerkat-comms 0.7.13

Inter-agent communication for Meerkat
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Comms runtime and integration helpers.

pub mod comms_bootstrap;
pub mod comms_config;
pub mod comms_runtime;

pub use comms_bootstrap::{
    CommsAdvertise, CommsBootstrap, CommsBootstrapError, CommsBootstrapMode, ParentCommsContext,
    PreparedComms,
};
pub use comms_config::CoreCommsConfig;
#[cfg(not(target_arch = "wasm32"))]
pub use comms_config::ResolvedCommsConfig;
pub use comms_runtime::{CommsRuntime, CommsRuntimeError, PeerRequestResponseAuthority};