Crate taskline

source ·
Expand description

The library allows to create scheduled tasks via Redis for Rust.

Modules§

  • Backend traits for queue. You can implement your own backend by implementing this traits.
  • Backends which can be used to store data. The backends must implement DequeuBackend and EnqueuBackend traits. They can be used in Consumer and Producer.
  • Committer of tasks. Main struct for committing tasks from queue.
  • Consumer of tasks. Main struct for consuming tasks from queue.
  • Types and traits that are commonly used in the library.
  • Producer of tasks. Main struct for producing tasks to queue.