cn.hutool.cron.timingwheel.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
/**
* 时间轮实现,重写了kafka的TimingWheel
* 时间轮一般会实现成一个环形结构,类似一个时钟,分为很多槽,一个槽代表一个时间间隔,每个槽使用双向链表存储定时任务。指针周期性地跳动,跳动到一个槽位,就执行该槽位的定时任务。
*
*
* 时间轮算法介绍:https://www.confluent.io/blog/apache-kafka-purgatory-hierarchical-timing-wheels/
* 参考:https://github.com/eliasyaoyc/timingwheel
*
* @author looly
*/
package cn.hutool.cron.timingwheel;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy