crb_send/lib.rs
1//! A crate with senders and notifiers.
2//!
3//! WARNING! Don't use own `SendError` type! Anti-pattern!
4//! Because it hides specific errors of implementations,
5//! for example, the actors extension sender returns an error
6//! with the priority used to send an event (because there are
7//! two priority queues). If we use the `SendError` we have to
8//! drop the details!
9
10pub mod notifier;
11pub mod sender;
12
13pub use notifier::*;
14pub use sender::*;