tinyrpc/includes/net/timer.hpp

18 lines
275 B
C++
Raw Normal View History

2024-12-25 19:38:36 +08:00
#pragma once
#include "fd_event.hpp"
#include "reactor.hpp"
namespace tinyrpc {
class Timer : FdEvent {
public:
Timer(Reactor::Task cb = FdEvent::m_default_callback);
~Timer();
private:
// TODO .... 完善 Timer 类
};
}