(timerID uint64)
| 82 | } |
| 83 | |
| 84 | func (this *TimerManager) DeleteTimer(timerID uint64) bool { |
| 85 | if timerID == 0 { |
| 86 | return false |
| 87 | } |
| 88 | return this.timer_wheels[4].delete_timer(timerID>>24, uint32(timerID&0xffffff)) |
| 89 | } |
| 90 | |
| 91 | func (this *TimerManager) Execute(count uint32) int { |
| 92 | now := UnixTS() |
no test coverage detected