| 15 | use std::sync::atomic::AtomicI32; |
| 16 | |
| 17 | pub struct MessageBus { |
| 18 | #[cfg(test)] |
| 19 | pub book_keeper: AtomicI32, |
| 20 | |
| 21 | command_handler: &'static CommandHandler<AtomicContextManager>, |
| 22 | event_handler: &'static EventHandler<AtomicContextManager>, |
| 23 | } |
| 24 | |
| 25 | impl MessageBus { |
| 26 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected