ebus is a simple Eventbus implementation written in Rust.
Report Bug
ยท
Request Feature
This is a small Eventbus implementation that can be used to asynchronously transmit data to subscribers of a EventBus instance.
cargo build --release
cargo run --example basic-implementation
```rust use ebus::{async_subscriber, Event, EventBus, EventBusSubscriber};
pub struct ExampleData { pub data: String, }
pub struct ExampleDataSubscriber;
impl EventBusSubscriber for ExampleDataSubscriber { type InputDataType = ExampleData;
async fn on_event_publish(&mut self, event: &Event<Self::InputDataType>) {
println!("Received Data: {:#?}", event.data_ref());
}
}
async fn main() {
let mut example_bus: EventBus
let subscriber = ExampleDataSubscriber::default();
example_bus.subscribe(subscriber);
let event = Event::new(ExampleData {
data: "Hello World!".to_owned(),
});
example_bus.force_process_single(event).await;
}
```
See the open issues for a full list of proposed features (and known issues).
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
git checkout -b feature/AmazingFeature
)git commit -m 'Add some AmazingFeature'
)git push origin feature/AmazingFeature
)Distributed under the MIT or Apache 2 License. See LICENSE-MIT
or LICENSE-APACHE
for more information.