[][src]Struct relm_core::EventStream

pub struct EventStream<MSG> { /* fields omitted */ }

A stream of messages to be used for widget/signal communication and inter-widget communication. EventStream cannot be send to another thread. Use a Channel Sender instead.

Methods

impl<MSG> EventStream<MSG>[src]

pub fn new() -> Self[src]

Create a new event stream.

pub fn close(&self)[src]

Close the event stream, i.e. stop processing messages.

pub fn emit(&self, event: MSG)[src]

Send the event message to the stream and the observers.

pub fn lock(&self) -> Lock<MSG>[src]

Lock the stream (don't emit message) until the Lock goes out of scope.

pub fn observe<CALLBACK: Fn(&MSG) + 'static>(&self, callback: CALLBACK)[src]

Add an observer to the event stream. This callback will be called every time a message is emmited.

pub fn set_callback<CALLBACK: FnMut(MSG) + 'static>(&self, callback: CALLBACK)[src]

Add a callback to the event stream. This is the main callback and received a owned version of the message, in contrast to observe().

Trait Implementations

impl<MSG> Clone for EventStream<MSG>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<MSG> !Send for EventStream<MSG>

impl<MSG> !Sync for EventStream<MSG>

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.