slotCount和interval增加默认值
This commit is contained in:
parent
d6b415a839
commit
4d9cb375ec
8
core.go
8
core.go
@ -21,6 +21,14 @@ import (
|
||||
//
|
||||
// Date : 16:50 2023/8/11
|
||||
func NewTimeWheel(slotCount int, interval time.Duration) *TimeWheel {
|
||||
if slotCount <= 0 {
|
||||
// 默认100个槽位
|
||||
slotCount = 100
|
||||
}
|
||||
if interval.Seconds() == 0 {
|
||||
// 默认60s扫描一次
|
||||
interval = time.Second * 60
|
||||
}
|
||||
tw := &TimeWheel{
|
||||
Interval: interval,
|
||||
Slots: make([]*list.List, slotCount),
|
||||
|
Loading…
Reference in New Issue
Block a user