[][src]Struct mpmc_scheduler::Controller

pub struct Controller<K, V, R> where
    K: Sync + Send + Hash + Eq,
    V: Sync + Send + 'static,
    R: 'static, 
{ /* fields omitted */ }

The Controller is a non-producing handle to the scheduler. It allows creation of new channels as well as clearing of queues.

Methods

impl<K, V, R> Controller<K, V, R> where
    K: Sync + Send + Hash + Eq,
    V: Sync + Send + 'static,
    R: 'static, 
[src]

pub fn channel(&self, key: K, bound: usize) -> Sender<V>
[src]

Create a new channel, returns the producer site. See below for bound. May block if clearing or scheduling tick is currently running.

Bound

Is the next power of two for the handed value

pub fn cancel_channel(&self, key: &K) -> Result<(), ()>
[src]

Clear queue for specific channel & running jobs if supported.

May block if channel is called or a schedule is running. Note that for a queue with bounds n, it has a O(n) worst case complexity.

Returns Err if the specified channel is invalid.

pub fn gc(&self)
[src]

Manually trigger schedule. Normaly not required but if you should drop a lot of channels and don't insert/complete a job in the next time, you may call this.

Trait Implementations

impl<K: Clone, V: Clone, R: Clone> Clone for Controller<K, V, R> where
    K: Sync + Send + Hash + Eq,
    V: Sync + Send + 'static,
    R: 'static, 
[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<K, V, R> Send for Controller<K, V, R>

impl<K, V, R> Sync for Controller<K, V, R>

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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