spark_channel/
lib.rs

1//! # Spark Channel
2//!
3//! This crate is used to send messages between modules. This crate is not specific to any of the traits but a generic implementation to implement them in an event-driven architecture.
4
5pub mod callback;
6pub mod cancellation_token;
7pub mod listener;