liminal-server 0.2.5

Standalone server for the liminal messaging bus
Documentation
#[path = "connection/apply.rs"]
mod apply;
#[path = "connection/conversation.rs"]
mod conversation;
#[path = "connection/delivery.rs"]
mod delivery;
#[path = "connection/notifier.rs"]
pub mod notifier;
#[path = "connection/outbound.rs"]
mod outbound;
#[path = "connection/pending_reply.rs"]
mod pending_reply;
#[path = "connection/process.rs"]
mod process;
#[path = "connection/services.rs"]
pub mod services;
#[path = "connection/services_cluster.rs"]
mod services_cluster;
#[cfg(test)]
#[path = "connection/services_r5_tests.rs"]
mod services_r5_tests;
#[path = "connection/services_schema.rs"]
mod services_schema;
#[path = "connection/state.rs"]
mod state;
#[path = "connection/supervisor.rs"]
mod supervisor;
#[path = "connection/wake.rs"]
mod wake;
#[path = "connection/worker_front_door.rs"]
mod worker_front_door;

pub use conversation::{ConnectionConversation, ConversationResource};
pub use notifier::ConnectionNotifier;
pub use services::{
    ChannelCluster, ConnectionServices, ConnectionSubscription, LiminalConnectionServices,
    PublishOutcome, build_connection_services,
};
pub use supervisor::{ConnectionHandle, ConnectionSupervisor, PushReplyAwaiter};
pub use worker_front_door::WorkerFrontDoorServices;