[][src]Struct ipc_channel::router::RouterProxy

pub struct RouterProxy { /* fields omitted */ }

A RouterProxy provides methods for talking to the router. Calling new automatically spins up a router thread which waits for events on its registered IpcReceiver<T>s. The RouterProxy's methods communicate with the running router thread to register new IpcReceiver<T>'s

Methods

impl RouterProxy[src]

pub fn new() -> RouterProxy[src]

pub fn add_route(&self, receiver: OpaqueIpcReceiver, callback: RouterHandler)[src]

Add a new (receiver, callback) pair to the router, and send a wakeup message to the router.

pub fn route_ipc_receiver_to_crossbeam_sender<T>(
    &self,
    ipc_receiver: IpcReceiver<T>,
    crossbeam_sender: Sender<T>
) where
    T: for<'de> Deserialize<'de> + Serialize + Send + 'static, 
[src]

A convenience function to route an IpcReceiver<T> to an existing Sender<T>.

pub fn route_ipc_receiver_to_new_crossbeam_receiver<T>(
    &self,
    ipc_receiver: IpcReceiver<T>
) -> Receiver<T> where
    T: for<'de> Deserialize<'de> + Serialize + Send + 'static, 
[src]

A convenience function to route an IpcReceiver<T> to a Receiver<T>: the most common use of a Router.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,