fxied TimerManager 外部工作组构造

This commit is contained in:
fasiondog 2024-08-21 01:45:31 +08:00
parent bf6b2b7d16
commit 031f63bece

View File

@ -43,7 +43,10 @@ public:
* 线便线
* @param tg 线
*/
TimerManager(const std::shared_ptr<ThreadPool>& tg) : m_tg(tg) {}
TimerManager(const std::shared_ptr<ThreadPool>& tg)
: m_stop(true), m_current_timer_id(-1), m_work_num(1), m_tg(tg) {
start();
}
/** 析构函数 */
~TimerManager() {