NewTimerManager creates and returns a new timer manager
()
| 28 | |
| 29 | // NewTimerManager creates and returns a new timer manager |
| 30 | func NewTimerManager() *TimerManager { |
| 31 | |
| 32 | tm := new(TimerManager) |
| 33 | tm.Initialize() |
| 34 | return tm |
| 35 | } |
| 36 | |
| 37 | // Initialize initializes the timer manager. |
| 38 | // It is normally used when the TimerManager is embedded in another type. |
nothing calls this directly
no test coverage detected