[][src]Struct pconvert_rust::parallelism::ThreadPool

pub struct ThreadPool { /* fields omitted */ }

Thread pool used in multi-threaded pconvert calls.

Implementations

impl ThreadPool[src]

pub fn new(size: usize) -> Result<ThreadPool, PConvertError>[src]

Creates a thread pool with size worker threads.

pub fn start(&mut self)[src]

Begin execution of worker threads.

pub fn execute<F>(&self, func: F) -> Receiver<ResultMessage> where
    F: FnOnce() -> ResultMessage + Send + 'static, 
[src]

Enqueues a task for execution by any of the worker threads.

Arguments

  • func - The task to execute.

Return

Returns the receiver end of a channel where the result will be placed.

Examples

let result_channel = thread_pool.execute(move || ResultMessage::ImageResult(read_png_from_file(top_path, demultiply)));
let top = match result_channel.recv().unwrap() {
    ResultMessage::ImageResult(result) => result,
}.unwrap();

pub fn expand_to(&mut self, num_threads: usize)[src]

Expands the thread pool to num_threads. Creates n workers, where n = num_threads - thread_pool_size.

pub fn get_status(&self) -> ThreadPoolStatus[src]

Trait Implementations

impl Drop for ThreadPool[src]

Auto Trait Implementations

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.