forked from dresden-elektronik/deconz-rest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
event_emitter.h
43 lines (33 loc) · 828 Bytes
/
event_emitter.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* Copyright (c) 2021 dresden elektronik ingenieurtechnik gmbh.
* All rights reserved.
*
* The software in this package is published under the terms of the BSD
* style license a copy of which has been included with this distribution in
* the LICENSE.txt file.
*
*/
#ifndef EVENT_EMITTER_H
#define EVENT_EMITTER_H
#include <QObject>
#include <vector>
#include "event.h"
class QTimer;
void enqueueEvent(const Event &event);
class EventEmitter : public QObject
{
Q_OBJECT
public:
explicit EventEmitter(QObject *parent = nullptr);
~EventEmitter();
public Q_SLOTS:
void enqueueEvent(const Event &event);
void timerFired();
Q_SIGNALS:
void eventNotify(const Event&);
private:
size_t m_pos = 0;
QTimer *m_timer = nullptr;
std::vector<Event> m_queue;
};
#endif // EVENT_EMITTER_H