| 23 | namespace ark { |
| 24 | |
| 25 | bool AFCTimerModule::Init() |
| 26 | { |
| 27 | timer_manager_ptr = std::make_shared<AFTimeWheelManager>(); |
| 28 | timer_manager_ptr->Init(GetPluginManager()->GetNowTime()); |
| 29 | |
| 30 | return true; |
| 31 | } |
| 32 | |
| 33 | bool AFCTimerModule::PreShut() |
| 34 | { |
nothing calls this directly
no test coverage detected