drumbeat 0.1.1

An event handling system aimed towards real-time applications such as GUIs and Game Engines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Drumbeat is:
//! * a real-time focused, observer pattern based, multithreaded event system.
//! * a real-time focused synchronization library implementing thread workers,
//!   thread pools and a multithreaded runtime.
#![feature(negative_impls)]
#![feature(async_closure)]

#[macro_use]
extern crate lazy_static;

pub mod event;
pub mod sync;
pub mod utils;