[][src]Struct tui_logger::Dispatcher

pub struct Dispatcher<E: Debug> { /* fields omitted */ }

Dispatcher is used to dispatch any event to a dynamically built chain of handlers. The dispatch is a one-shot event. After an event is successfully processed, the dispatch chain is emptied.

extern crate tui_logger;
extern crate termion;

use tui_logger::Dispatcher;
use termion::event::{Event,Key};

let mut dispatcher = Dispatcher::new();
dispatcher.add_listener(|ev| { println!("called"); true });
dispatcher.dispatch(&Event::Key(Key::Up));

Implementations

impl<E> Dispatcher<E> where
    E: Debug
[src]

pub fn new() -> Dispatcher<E>[src]

Create a new dispatcher

pub fn add_listener<F: 'static + Fn(&E) -> bool>(&mut self, f: F)[src]

Add a listener at the end of the dispatch chain. Every Listener has to be a closure receiving a termion event as parameter and shall return a boolean.

pub fn dispatch(&mut self, ev: &E) -> bool[src]

Dispatches an event to the queue. The event is sent to the event handlers in the queue in FIFO order. If an event handler returns true, then the following event handlers will not be processed anymore, the queue will be emptied and the return value of dispatch() is true. If no event handler has returned true, or the event queue is empty, then the function returns false.

pub fn clear(&mut self)[src]

Clear the dispatcher queue

Auto Trait Implementations

impl<E> !RefUnwindSafe for Dispatcher<E>

impl<E> !Send for Dispatcher<E>

impl<E> !Sync for Dispatcher<E>

impl<E> Unpin for Dispatcher<E>

impl<E> !UnwindSafe for Dispatcher<E>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.