(timer_id uint64)
| 94 | } |
| 95 | |
| 96 | func (this *module) RemoveTimer(timer_id uint64) bool { |
| 97 | return this.timer_manager.DeleteTimer(timer_id) |
| 98 | } |
| 99 | |
| 100 | func (this *module) PostEvent(event_type EventType, agent Agent, cid ComponentID) { |
| 101 | event := this.event_msg_pool.Get().(*SessionEventMsg) |
nothing calls this directly
no test coverage detected