pub struct DefaultMediator { /* private fields */ }
Expand description

A default implementation for the Mediator trait.

Examples

Request handler

use std::sync::atomic::AtomicU64;
use mediator::{DefaultMediator, Mediator, Request, RequestHandler};

struct GetNextId;
impl Request<u64> for GetNextId { }

struct GetNextIdHandler;
impl RequestHandler<GetNextId, u64> for GetNextIdHandler {
  fn handle(&mut self, _: GetNextId) -> u64 {
    static NEXT_ID : AtomicU64 = AtomicU64::new(1);
    NEXT_ID.fetch_add(1, std::sync::atomic::Ordering::SeqCst)
  }
}

let mut mediator = DefaultMediator::builder()
    .add_handler(GetNextIdHandler)
    .build();

assert_eq!(Ok(1), mediator.send(GetNextId));
assert_eq!(Ok(2), mediator.send(GetNextId));
assert_eq!(Ok(3), mediator.send(GetNextId));

Event handler

use mediator::{Event, DefaultMediator, Mediator};

#[derive(Clone)]
struct Product { name: String };

#[derive(Clone)]
struct ProductAddedEvent(Product);
impl Event for ProductAddedEvent { }

struct ProductService(Vec<Product>, DefaultMediator);
impl ProductService {
    pub fn add<S: Into<String>>(&mut self, product: S) {
        let product = Product { name: product.into() };
        self.0.push(product.clone());
        self.1.publish(ProductAddedEvent(product));
    }
}

let mut mediator = DefaultMediator::builder()
    .subscribe_fn(move |event: ProductAddedEvent| {
        println!("Product added: {}", event.0.name);
    })
   .build();

let mut service = ProductService(vec![], mediator.clone());

service.add("Microwave");   // Product added: Microwave
service.add("Toaster");     // Product added: Toaster

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Sends a request to the mediator.

Publish an event to the mediator.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.