[][src]Struct sealrs::executors::thread_pinned_executor::ThreadPinnedExecutor

pub struct ThreadPinnedExecutor { /* fields omitted */ }

Methods

impl ThreadPinnedExecutor[src]

pub fn new() -> ThreadPinnedExecutor[src]

Creates new executor with default settings. Thread counts = count of the physical cpu core's. Distribution strategy = Round.

pub fn set_threads_count(self, count: usize) -> Self[src]

Set thread's count

pub fn get_threads_count(&self) -> usize[src]

pub fn set_distribution_strategy(self, strategy: DistributionStrategy) -> Self[src]

Set distribution strategy

pub fn run(self) -> Self[src]

Starts executor threads

Trait Implementations

impl Executor for ThreadPinnedExecutor[src]

fn execute(&mut self, f: ExecutorTask, options: Option<Box<dyn Any>>)[src]

Plans task for execution. This method must be called only after the executor is running. Otherwise it will cause to panic!

fn stop(&mut self)[src]

Stops executor threads

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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