/// Can be used to raise notifications out of a mailbox. Notifications
/// aren't guaranteed to arrive, and the mailbox has no way to know
/// when (of if) they were received.
///
/// Use of this type is completely optional, but it implements the
/// best practices for raising notifications from mailboxes and its
/// use in this scenario is highly recommended.
use mpsc;
/// The sender part of NotificationChannel.
/// The receiver part of NotificationChannel.
pub type Receiver<T> = UnboundedReceiver;