ScheduledTaskManager

Struct ScheduledTaskManager 

Source
pub struct ScheduledTaskManager { /* private fields */ }

Implementations§

Source§

impl ScheduledTaskManager

Source

pub fn new() -> Self

Source

pub fn add_fixed_rate_task<F, Fut>( &self, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: FnMut(CancellationToken) -> Fut + Send + Sync + 'static, Fut: Future<Output = Result<()>> + Send + 'static,

Adds a fixed-rate scheduled task to the task manager.

§Arguments
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Future that resolves to a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • Tasks are executed at fixed intervals, even if previous executions overlap.
Source

pub fn add_fixed_delay_task<F, Fut>( &self, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: FnMut(CancellationToken) -> Fut + Send + Sync + 'static, Fut: Future<Output = Result<()>> + Send + 'static,

Adds a fixed-delay scheduled task to the task manager.

§Arguments
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Future that resolves to a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • Tasks are executed serially, with a delay after each task completes.
Source

pub fn add_fixed_rate_no_overlap_task<F, Fut>( &self, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: FnMut(CancellationToken) -> Fut + Send + Sync + 'static, Fut: Future<Output = Result<()>> + Send + 'static,

Adds a fixed-rate-no-overlap scheduled task to the task manager.

§Arguments
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Future that resolves to a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • Tasks are executed at fixed intervals, but overlapping executions are skipped.
Source

pub fn add_scheduled_task<F, Fut>( &self, mode: ScheduleMode, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: FnMut(CancellationToken) -> Fut + Send + Sync + 'static, Fut: Future<Output = Result<()>> + Send + 'static,

Adds a scheduled task to the task manager.

§Arguments
  • mode - The scheduling mode for the task. Determines how the task is executed:
    • FixedRate: Aligns the beats, allowing tasks to pile up if they take too long.
    • FixedDelay: Executes tasks serially, with a delay after each task completes.
    • FixedRateNoOverlap: Aligns the beats but skips execution if the previous task is still running.
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Future that resolves to a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • The task function is executed asynchronously.
  • The CancellationToken can be used to gracefully cancel the task.
  • The task is added to the internal task manager and can be managed (e.g., canceled or aborted) later.
Source

pub fn cancel_task(&self, id: u64)

Graceful cancellation

Source

pub fn abort_task(&self, id: u64)

Roughly abort

Source

pub fn cancel_all(&self)

Batch cancel

Source

pub fn abort_all(&self)

Batch abort

Source

pub fn task_count(&self) -> usize

Source§

impl ScheduledTaskManager

Source

pub fn add_fixed_rate_task_async<F>( &self, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: AsyncFnMut(CancellationToken) -> Result<()> + Send + Sync + 'static, for<'a> <F as AsyncFnMut<(CancellationToken,)>>::CallRefFuture<'a>: Send,

Adds a fixed-rate scheduled task to the task manager asynchronously.

§Arguments
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • Tasks are executed at fixed intervals, even if previous executions overlap.
  • The task function is executed asynchronously.
Source

pub fn add_fixed_delay_task_async<F>( &self, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: AsyncFnMut(CancellationToken) -> Result<()> + Send + Sync + 'static, for<'a> <F as AsyncFnMut<(CancellationToken,)>>::CallRefFuture<'a>: Send,

Adds a fixed-delay scheduled task to the task manager asynchronously.

§Arguments
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • Tasks are executed serially, with a delay after each task completes.
  • The task function is executed asynchronously.
Source

pub fn add_fixed_rate_no_overlap_task_async<F>( &self, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: AsyncFnMut(CancellationToken) -> Result<()> + Send + Sync + 'static, for<'a> <F as AsyncFnMut<(CancellationToken,)>>::CallRefFuture<'a>: Send,

Adds a fixed-rate-no-overlap scheduled task to the task manager asynchronously.

§Arguments
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • Tasks are executed at fixed intervals, but overlapping executions are skipped.
  • The task function is executed asynchronously.
Source

pub fn add_scheduled_task_async<F>( &self, mode: ScheduleMode, initial_delay: Duration, period: Duration, task_fn: F, ) -> u64
where F: AsyncFnMut(CancellationToken) -> Result<()> + Send + Sync + 'static, for<'a> <F as AsyncFnMut<(CancellationToken,)>>::CallRefFuture<'a>: Send,

Adds a scheduled task to the task manager asynchronously.

§Arguments
  • mode - The scheduling mode for the task. Determines how the task is executed:
    • FixedRate: Aligns the beats, allowing tasks to pile up if they take too long.
    • FixedDelay: Executes tasks serially, with a delay after each task completes.
    • FixedRateNoOverlap: Aligns the beats but skips execution if the previous task is still running.
  • initial_delay - The delay before the first execution of the task.
  • period - The interval between task executions.
  • task_fn - A function that defines the task to be executed. It takes a CancellationToken as an argument and returns a Future that resolves to a Result<()>.
§Returns

A TaskId representing the unique identifier of the scheduled task.

§Notes
  • The task function is executed asynchronously.
  • The CancellationToken can be used to gracefully cancel the task.
  • The task is added to the internal task manager and can be managed (e.g., canceled or aborted) later.

Trait Implementations§

Source§

impl Clone for ScheduledTaskManager

Source§

fn clone(&self) -> ScheduledTaskManager

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for ScheduledTaskManager

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more