fox/timer/interface.go
2025-06-06 20:03:46 +08:00

12 lines
190 B
Go

package timer
import (
"time"
)
type ITimer interface {
NewTimer(duration time.Duration, cb func(), needLog bool, desc ...string) uint32
CancelTimer(timerId uint32)
CancelAllTimer()
}