All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.cron.timingwheel.package-info Maven / Gradle / Ivy

There is a newer version: 5.8.33
Show newest version
/**
 * 时间轮实现,重写了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