Struct tui_logger::Dispatcher [] [src]

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));

Methods

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

[src]

Create a new dispatcher

[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.

[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.

[src]

Clear the dispatcher queue

Trait Implementations

Auto Trait Implementations

impl<E> !Send for Dispatcher<E>

impl<E> !Sync for Dispatcher<E>