timer.go 202 B

123456789101112131415
  1. package mhayaActor
  2. import (
  3. "time"
  4. ctimeWheel "github.com/mhaya/extend/time_wheel"
  5. )
  6. var (
  7. globalTimer = ctimeWheel.NewTimeWheel(10*time.Millisecond, 3600)
  8. )
  9. func init() {
  10. globalTimer.Start()
  11. }