Skip to content

Latest commit

 

History

History
9 lines (9 loc) · 252 Bytes

File metadata and controls

9 lines (9 loc) · 252 Bytes
class Timer {
    std::function<void()> m_callback; //回调函数
    TimePoint m_when; //触发时间节点
    const Nanoseconds m_interval; //时间间隔
    bool m_repeat; //是否可重复
    bool m_canceled; //是否已经cancel
};