DefaultMediator

Struct DefaultMediator 

Source
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§

Source§

impl Clone for DefaultMediator

Source§

fn clone(&self) -> DefaultMediator

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Mediator for DefaultMediator

Source§

fn send<Req, Res>(&mut self, req: Req) -> Result<Res>
where Res: 'static, Req: Request<Res> + 'static,

Sends a request to the mediator.
Source§

fn publish<E>(&mut self, event: E) -> Result<()>
where E: Event + 'static,

Publish an event to the mediator.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.