Crate tasklet

Source
Expand description

An asynchronous task scheduling library written in Rust.

tasklet allows you to create scheduled tasks with specific execution patterns and run them asynchronously using Tokio. It supports cron-like scheduling expressions and provides a builder pattern for easy task creation.

Re-exports§

pub use errors::TaskError;
pub use errors::TaskResult;
pub use task::Task;

Modules§

errors
Error types for the tasklet library.
task

Structs§

TaskBuilder
Task builder function.
TaskGenerator
Task generation structure.
TaskScheduler
Task scheduler and executor.