[−][src]Struct scheduled_thread_pool::ScheduledThreadPool
A pool of threads which can run tasks at specific time intervals.
When the pool drops, all pending scheduled executions will be run, but periodic actions will not be rescheduled after that.
Methods
impl ScheduledThreadPool
[src]
pub fn new(num_threads: usize) -> ScheduledThreadPool
[src]
pub fn with_name(thread_name: &str, num_threads: usize) -> ScheduledThreadPool
[src]
Creates a new thread pool with the specified number of threads which will be named.
The substring {}
in the name will be replaced with an integer
identifier of the thread.
Panics
Panics if num_threads
is 0.
pub fn execute<F>(&self, job: F) -> JobHandle where
F: FnOnce() + Send + 'static,
[src]
F: FnOnce() + Send + 'static,
Executes a closure as soon as possible in the pool.
pub fn execute_after<F>(&self, delay: Duration, job: F) -> JobHandle where
F: FnOnce() + Send + 'static,
[src]
F: FnOnce() + Send + 'static,
Executes a closure after a time delay in the pool.
pub fn execute_at_fixed_rate<F>(
&self,
initial_delay: Duration,
rate: Duration,
f: F
) -> JobHandle where
F: FnMut() + Send + 'static,
[src]
&self,
initial_delay: Duration,
rate: Duration,
f: F
) -> JobHandle where
F: FnMut() + Send + 'static,
Executes a closure after an initial delay at a fixed rate in the pool.
The rate includes the time spent running the closure. For example, if the rate is 5 seconds and the closure takes 2 seconds to run, the closure will be run again 3 seconds after it completes.
Panics
If the closure panics, it will not be run again.
pub fn execute_with_fixed_delay<F>(
&self,
initial_delay: Duration,
delay: Duration,
f: F
) -> JobHandle where
F: FnMut() + Send + 'static,
[src]
&self,
initial_delay: Duration,
delay: Duration,
f: F
) -> JobHandle where
F: FnMut() + Send + 'static,
Executes a closure after an initial delay at a fixed rate in the pool.
In contrast to execute_at_fixed_rate
, the execution time of the
closure is not subtracted from the delay before it runs again. For
example, if the delay is 5 seconds and the closure takes 2 seconds to
run, the closure will run again 5 seconds after it completes.
Panics
If the closure panics, it will not be run again.
Trait Implementations
impl Drop for ScheduledThreadPool
[src]
Auto Trait Implementations
impl Unpin for ScheduledThreadPool
impl Sync for ScheduledThreadPool
impl Send for ScheduledThreadPool
impl !UnwindSafe for ScheduledThreadPool
impl !RefUnwindSafe for ScheduledThreadPool
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,