1
0
mirror of https://github.com/MGislv/NekoX.git synced 2024-07-04 11:13:36 +00:00
NekoX/TMessagesProj/jni/tgnet/Timer.h

42 lines
777 B
C
Raw Normal View History

2015-09-24 20:52:02 +00:00
/*
2018-07-30 02:07:02 +00:00
* This is the source code of tgnet library v. 1.1
2015-09-24 20:52:02 +00:00
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
2018-07-30 02:07:02 +00:00
* Copyright Nikolai Kudashov, 2015-2018.
2015-09-24 20:52:02 +00:00
*/
#ifndef TIMER_H
#define TIMER_H
#include <stdint.h>
#include <functional>
#include <sys/epoll.h>
class EventObject;
class Timer {
public:
2018-07-30 02:07:02 +00:00
Timer(int32_t instance, std::function<void()> function);
2015-09-24 20:52:02 +00:00
~Timer();
void start();
void stop();
void setTimeout(uint32_t ms, bool repeat);
private:
void onEvent();
bool started = false;
bool repeatable = false;
2018-07-30 02:07:02 +00:00
int32_t instanceNum;
2015-09-24 20:52:02 +00:00
uint32_t timeout = 0;
std::function<void()> callback;
EventObject *eventObject;
friend class EventObject;
};
#endif