You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
444 B
19 lines
444 B
// Copyright (c) Vitaliy Filippov, 2019+
|
|
// License: VNPL-1.0 or GNU GPL-2.0+ (see README.md for details)
|
|
|
|
#pragma once
|
|
|
|
#include "ringloop.h"
|
|
|
|
class timerfd_interval
|
|
{
|
|
int wait_state;
|
|
int timerfd;
|
|
ring_loop_t *ringloop;
|
|
ring_consumer_t consumer;
|
|
std::function<void(void)> callback;
|
|
public:
|
|
timerfd_interval(ring_loop_t *ringloop, int seconds, std::function<void(void)> cb);
|
|
~timerfd_interval();
|
|
void loop();
|
|
};
|
|
|