2 个版本
0.1.1 | 2024年7月11日 |
---|---|
0.1.0 | 2023年5月9日 |
#66 在 无标准库 中
每月 1,446 次下载
4KB
handler_table
无锁事件处理程序表。
示例
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