Module hey_listen::rc[][src]

The blocking dispatcher module.

Re-exports

pub use dispatcher::Dispatcher;

Modules

dispatcher

Contains the blocking dispatcher.

Enums

DispatcherRequest

An enum returning a request from a listener to the single-threaded dispatcher. This enum is not restricted to dispatcher residing in the sync-module. A request will be processed by the event-dispatcher depending on the variant:

Traits

Listener

Every event-receiver needs to implement this trait in order to receive dispatched events. T being the type you use for events, e.g. an Enum.