[][src]Struct blackhole::BlackHole

pub struct BlackHole<J> where
    J: Job
{ /* fields omitted */ }

Black Hole

Usage

You should call escape_on_idle() when done with this.

Be careful when you manually call drop() on a black hole, or simply let it go out of scope. Because background threads are left unmanaged. They will keep running until main thread exits. Then they will be cancelled/discarded by the system.

Notes

Messages printed by background threads are prefixed with TAG.

Implementations

impl<J> BlackHole<J> where
    J: Job
[src]

pub fn make(active_limit: ActiveLimit, queue_limit: usize) -> Result<Self>[src]

Makes new instance

Notes

  • Active limit and queue limit are declared in different types to help prevent typos.
  • An error is returned if either active limit or queue limit is zero.
  • Internal vectors used for jobs will be made immediately with capacities of active limit and queue limit.

pub fn throw(&self, job: J) -> Result<Option<J>>[src]

Throws new job into the black hole

  • If the job is accepted, None is returned.
  • If the job is not accepted, it is returned to you for recovery.

pub unsafe fn escape(self) -> Result<()>[src]

Escapes the black hole

Notes

  • New jobs and all waiting jobs are discarded.
  • Active jobs are left untouched. They will be discarded by system when the program's main thread exits.

pub fn escape_on_idle(self) -> Result<()>[src]

Trait Implementations

impl<J: Debug> Debug for BlackHole<J> where
    J: Job
[src]

Auto Trait Implementations

impl<J> !RefUnwindSafe for BlackHole<J>

impl<J> Send for BlackHole<J>

impl<J> Sync for BlackHole<J>

impl<J> Unpin for BlackHole<J>

impl<J> !UnwindSafe for BlackHole<J>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.