(delay uint64, op TimerHandler, args ...interface{})
| 90 | } |
| 91 | |
| 92 | func (this *module) AddTimer(delay uint64, op TimerHandler, args ...interface{}) uint64 { |
| 93 | return this.timer_manager.AddTimer(delay, op, args...) |
| 94 | } |
| 95 | |
| 96 | func (this *module) RemoveTimer(timer_id uint64) bool { |
| 97 | return this.timer_manager.DeleteTimer(timer_id) |