antbox-engine 0.1.0

A dedicated thread engine for evolving & controlling `antbox` states.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! The `antbox` engine encapsulates all state evolution in a standalone thread
#![deny(unsafe_code, missing_docs)]

mod notification;
mod notifier;
mod spawn;
mod ticktimer;

pub use self::notification::Notification;
pub use self::notifier::Notifier;
pub use self::spawn::spawn;
pub use self::ticktimer::TickTimer;