wheel-timer2 0.1.1

A timer based on a multi-time wheel structure
Documentation

wheel-timer2

A timer based on a multi-time wheel structure

docs.rs

This library uses a multi-layered time wheel structure.

When a task is added to the wheel, it will go to the wheel with the coarsest granularity first, then to the wheel with a higher granularity, until the specified time is reached.

If the task is too long to fit on all the wheels, the task will be run by adding round, if there are too many too long tasks, it will cause a lot of tasks to accumulate in the coarsest granularity wheel, so the number of layers, capacity and granularity of the wheel should be adjusted according to actual needs to avoid this kind of thing.

To be precise, this is a structure for managing and running timed tasks, not a complete timer, because the user himself needs to push (execute) it regularly.

Examples

look examples