Trait workerpool::Worker [] [src]

pub trait Worker: Default + 'static {
    type Input: Send;
    type Output: Send;
    fn execute(&mut self, _: Self::Input) -> Self::Output;
}

Abstraction of a worker which executes tasks in its own thread.

Associated Types

Required Methods

Implementors