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 asynctrait::asynctrait; use ebus::{bus::EventBus, event::Event, subscriber::EventBusSubscriber};
pub struct ExampleData { pub data: String, }
pub struct ExampleDataSubscriber { data: ExampleData, }
impl EventBusSubscriber for ExampleDataSubscriber { type InputDataType = ExampleData;
async fn on_event_publish(&mut self, event: &Event<Self::InputDataType>) {
let data = event.data.to_owned();
println!("Received Data: {:#?}", data);
self.data = data;
}
}
async fn main() {
let mut example_bus: EventBus
let subscriber = ExampleDataSubscriber {
data: ExampleData {
data: "".to_owned(),
},
};
example_bus.subscribe(subscriber);
example_bus
.publish_and_process(Event::new(ExampleData {
data: "I am Data".to_owned(),
}))
.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 License. See LICENSE
for more information.