6 个版本 (稳定版)
1.3.0 | 2023年8月14日 |
---|---|
1.2.0 | 2023年8月13日 |
1.1.1 | 2023年7月15日 |
1.0.0 | 2022年11月13日 |
0.1.0 | 2022年11月12日 |
在 异步 中排名 #854
每月下载量 30 次
10KB
64 行
关于项目
这是一个小型事件总线实现,可用于异步地向事件总线实例的订阅者发送数据。
使用方法
- 要构建库,请运行:
cargo build --release
- 要运行示例,请运行:
cargo run --example basic-implementation
基本示例
use ebus::{async_subscriber, EventBus, Subscriber};
#[derive(Default)]
pub struct ExampleSubscriber;
#[async_subscriber]
impl Subscriber for ExampleSubscriber {
type Input = String;
async fn on_event_publish(&mut self, event: &Self::Input) {
println!("Received Data: {:#?}", event);
}
}
#[tokio::main]
async fn main() {
// Create a new event bus
let mut event_bus = EventBus::default();
// Create a new subscriber and subscribe it to the event bus
let subscriber = ExampleSubscriber::default();
event_bus.subscribe(subscriber);
// Create an event and queue it for processing
let event_data = "Hello World!".to_owned();
event_bus.queue_and_process(event_data).await;
}
路线图
查看 开放问题 以获取建议功能(和已知问题的)完整列表。
贡献
如果您有改进此项目的建议,请fork存储库并创建一个pull请求。您还可以简单地打开一个带有“enhancement”标签的问题。
- fork 项目
- 创建您的功能分支(
git checkout -b feat(amazing)/amazing-feature
) - 提交您的更改(
git commit -m 'feat(amazing): such progress'
) - 将更改推送到分支(
git push origin feat(amazing)/amazing-feature
) - 打开一个pull请求
许可证
在MIT或Apache 2许可证下分发。有关更多信息,请参阅LICENSE-MIT
或LICENSE-APACHE
。
依赖项
~300–760KB
~18K SLoC