folk-core 0.1.15

Server core for Folk PHP application server — worker pool, plugin registry, admin RPC
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Folk application server core: config, worker pool, plugin registry.
//!
//! See `folk-spec/spec/01-architecture.md` for the role of this crate.

pub mod config;
pub mod health_registry;
pub mod logging;
pub mod metrics_registry;
pub mod plugin_registry;
pub mod rpc_registry;
pub mod rpc_server;
pub mod runtime;
pub mod server;
pub mod worker_pool;
pub mod worker_slot;