Versions in this module Expand all Collapse all v0 v0.0.1 Dec 6, 2023 Changes in this version + type Entry struct + Body T + Delay time.Duration + type HandleFun func(ele *Entry[T]) + type LinkList struct + Head *Entry[T] + Tail *Entry[T] + func (ll *LinkList[T]) Remove(node *Entry[T]) + type Queue struct + func NewQueue[T any](fun HandleFun[T], slotNum int) *Queue[T] + func (q *Queue[T]) Push(delay time.Duration, ele T) + func (q *Queue[T]) Run()