Crate handler_table
source ·Expand description
handler_table
A lock-free table of event handlers.
Examples
use handler_table::HandlerTable;
static TABLE: HandlerTable<8> = HandlerTable::new();
TABLE.register_handler(0, || {
println!("Hello, event 0!");
});
TABLE.register_handler(1, || {
println!("Hello, event 1!");
});
assert!(TABLE.handle(0)); // print "Hello, event 0!"
assert!(!TABLE.handle(2)); // unregistered
Structs
- A lock-free table of event handlers.
Type Aliases
- The type of an event handler.