docs.rs failed to build simple_jobs-0.2.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
simple_jobs-0.2.2
simple_jobs
Very simple persistent jobs
A simple wrapper for
Tokio tasks, where the tasks are saved to a backend of choice,
and they can be queried for their status.
As an example, the crate provides the implementation for saving tasks to the filesystem.
Defining the backend
The trait [Job] requires the functions [Job::save] and [Job::load] that
save and restore the struct [JobInfo].
Using the [FSJob] implementation
The struct [FSJob] implements the trait [Job] by saving and restoring the
job information from the filesystem. Each job gets a unique file, constructed
from the unique job id.
Example:
async
License: MIT