nuts 0.2.1

Nuts is a library that offers a simple publish-subscribe API, featuring decoupled creation of the publisher and the subscriber.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Inter Activity Communication
//!
//! This module contains all the glue necessary for activities to work together.
//!
//! A publish-subscribe model is used for scheduling, notifications, and low-bandwidth message bandwidth.
//!
//! TODO: model for shared memory is planned for higher bandwidth communication.

pub(crate) mod filter;
pub(crate) mod managed_state;
pub(crate) mod publish;
pub(crate) mod subscription;
pub(crate) mod topic;