event-emitter-rs

A simple EventEmitter implementation.

Allows you to subscribe to events with callbacks and also fire those events. Events are in the form of (strings, value) and callbacks are in the form of closures that take in a value parameter.

Getting Started

```rust use eventemitterrs::EventEmitter; let mut event_emitter = EventEmitter::new();

// This will print <"Hello world!"> whenever the <"Say Hello"> event is emitted eventemitter.on("Say Hello", |value: ()| println!("Hello world!")); eventemitter.emit("Say Hello", ()); // >> "Hello world!" ```

Basic Usage

We can emit and listen to values of any type so long as they implement the serde Serialize and Deserialize traits. A single EventEmitter instance can have listeners to values of multiple types.

```rust use eventemitterrs::EventEmitter; use serde::{Deserialize, Serialize}; let mut event_emitter = EventEmitter::new();

eventemitter.on("Add three", |number: f32| println!("{}", number + 3.0)); eventemitter.emit("Add three", 5.0 as f32); event_emitter.emit("Add three", 4.0 as f32); // >> "8.0" // >> "7.0"

// Using a more advanced value type such as a struct by implementing the serde traits

[derive(Serialize, Deserialize)]

struct Date { month: String, day: String, }

eventemitter.on("LOGDATE", |date: Date| { println!("Month: {} - Day: {}", date.month, date.day) }); eventemitter.emit("LOGDATE", Date { month: "January".tostring(), day: "Tuesday".tostring() }); // >> "Month: January - Day: Tuesday" ```

Removing listeners is also easy

```rust use eventemitterrs::EventEmitter; let mut event_emitter = EventEmitter::new();

let listenerid = eventemitter.on("Hello", |: ()| println!("Hello World")); match eventemitter.removelistener(&listenerid) { Some(listener_id) => print!("Removed event listener!"), None => print!("No event listener of that id exists") } ```

Creating a Global EventEmitter

It's likely that you'll want to have a single EventEmitter instance that can be shared accross files;

After all, one of the main points of using an EventEmitter is to avoid passing down a value through several nested functions/types and having a global subscription service.

```rust // globaleventemitter.rs use std::sync::Mutex; use crate::EventEmitter;

// Use lazystatic! because the size of EventEmitter is not known at compile time lazystatic! { // Export the emitter with pub keyword pub static ref EVENT_EMITTER: Mutex = Mutex::new(EventEmitter::new()); } ```

Then we can import this instance into multiple files.

```rust // main.rs

[macro_use]

extern crate lazy_static;

mod globaleventemitter; use globaleventemitter::EVENT_EMITTER;

fn main() { // We need to maintain a lock through the mutex so we can avoid data races EVENTEMITTER.lock().unwrap().on("Hello", |: ()| println!("hello there!")); EVENT_EMITTER.lock().unwrap().emit("Hello", ()); } ```

And in another file we can now listen to the <"Hello"> event in main.rs by adding a listener to the global event emitter.

```rust // somerandomfile.rs use crate::globaleventemitter::EVENT_EMITTER;

fn randomfunction() { // When the <"Hello"> event is emitted in main.rs then print <"Random stuff!"> EVENTEMITTER.lock().unwrap().on("Hello", |_: ()| println!("Random stuff!")); } ```

License: MIT OR Apache-2.0