|
@@ -1,3 +1,28 @@
|
|
|
+//! `fleck` is a library to for peer-to-peer communications in a distributed system.
|
|
|
+//!
|
|
|
+//! The core concept is that any program that wants to talk with other instances of itself (or
|
|
|
+//! compatible programs) can use `fleck`, and as much of the usual development overhead (network
|
|
|
+//! event loop, peer identity verification, packet encryption and forwarding, NAT punchthrough,
|
|
|
+//! etc) is handled within the library, in a way that the program need not care about.
|
|
|
+//!
|
|
|
+//! ### Library structure
|
|
|
+//! `fleck` is structured with a 'global' [`API`] instance, where any node-wide
|
|
|
+//! global state is stored. The [`API`] instance stores a collection of
|
|
|
+//! [`Channel`](service/event/struct.Channel.html) and [`Service`](service/trait.Service.html)
|
|
|
+//! instances. Services listen on specific channels, and events are sent to channels to be handled.
|
|
|
+//!
|
|
|
+//! For example, the [`NodeService`](fleck_core/node/struct.NodeService.html) will send events on a
|
|
|
+//! channel whenever a new node joins the `fleck` network. To reduce shared global state, channels
|
|
|
+//! are identified by a static [`ChannelSpec`](service/event/trait.ChannelSpec.html) type, which is
|
|
|
+//! usually a tuple of two or three other static types that allow distinguishing between e.g.
|
|
|
+//! [messages of different types being received](fleck_core/msg/type.MessageChannel.html), or
|
|
|
+//! [coarse](fleck_core/type.MajorTickChannel.html) and
|
|
|
+//! [fine](fleck_core/type.MinorTickChannel.html) tick timers.
|
|
|
+//!
|
|
|
+//! See the documentation for the [`fleck_core`] module to see the core
|
|
|
+//! services and channels that make up a standard `fleck` node.
|
|
|
+
|
|
|
+
|
|
|
use std::rc::Rc;
|
|
|
|
|
|
pub mod fleck_core;
|