pubsub_bus/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// *************************************************************************
//
// Copyright (c) 2025 Andrei Gramakov. All rights reserved.
//
// This file is licensed under the terms of the MIT license.
// For a copy, see: https://opensource.org/licenses/MIT
//
// site:    https://agramakov.me
// e-mail:  mail@agramakov.me
//
// *************************************************************************
mod bus;
mod event;
mod publisher;
mod queue;
mod shared;
mod subscriber;
pub use bus::EventBus;
pub use event::Event;
pub use publisher::Publisher;
pub use queue::EventQueue;
pub use shared::{IntoShared, Shared, With};
pub use subscriber::Subscriber;