Structs§
- Scheduled
Job - ScheduleJob contains meta data of the scheduled job.
- Scheduler
- Scheduler implements the main scheduler.
- Simple
Callback Job - SimpleCallbackJob executes
callback
. - Simple
Once Trigger - SimpleOnceTrigger fires once after specified delay.
- Simple
Trigger - SimpleTrigger fires after each
Duration
. - Task
- Task is a schedulable unit which encapsulates
the
job
and itstrigger
. - Trigger
Error
Traits§
- Engine
- Job
- Job is the trait that an implementor must conform to in order to be schedulable and runnable by the scheduler.
- Trigger
- Trigger is the trait for implementing triggers.
Functions§
- nownano
- schedule_
task_ after - schedule_task_after schedules the given
job
to run once aftertick
. - schedule_
task_ every - schedule_task_every schedules the given
job
with a trigger that fires after everytick
. - schedule_
task_ with - schedule_task_with schedules the given
job
with the giventrigger
.