[src]

Struct sync::TaskPool

pub struct TaskPool<T> {
    // some fields omitted
}

Methods

impl<T> TaskPool<T>

fn new(n_tasks: uint, init_fn_factory: || -> proc(uint) -> T) -> TaskPool<T>

Spawns a new task pool with n_tasks tasks. If the sched_mode is None, the tasks run on this scheduler; otherwise, they run on a new scheduler with the given mode. The provided init_fn_factory returns a function which, given the index of the task, should return local data to be kept around in that task.

fn execute(&mut self, f: proc(&T))

Executes the function f on a task in the pool. The function receives a reference to the local data returned by the init_fn.

Trait Implementations

impl<T> Drop for TaskPool<T>

fn drop(&mut self)