SNode.C
Loading...
Searching...
No Matches
TimerEventReceiver.h
Go to the documentation of this file.
1/*
2 * SNode.C - a slim toolkit for network communication
3 * Copyright (C) Volker Christian <me@vchrist.at>
4 * 2020, 2021, 2022, 2023, 2024, 2025
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef CORE_TIMEREVENTRECEIVER_H
21#define CORE_TIMEREVENTRECEIVER_H
22
23#include "core/EventReceiver.h"
24
25#ifndef DOXYGEN_SHOULD_SKIP_THIS
26
27#include "utils/Timeval.h" // IWYU pragma: export
28
29namespace core {
30 class Timer;
32} // namespace core
33
34#include <string>
35
36#endif /* DOXYGEN_SHOULD_SKIP_THIS */
37
38namespace core {
39
41 public:
43
45
46 void restart();
47
48 protected:
49 TimerEventReceiver(const std::string& name, const utils::Timeval& delay);
50 ~TimerEventReceiver() override;
51
52 utils::Timeval getTimeoutAbsolut() const;
53 utils::Timeval getTimeoutRelative(const utils::Timeval& currentTime) const;
54
55 void enable();
56 void update();
57 void cancel();
58
59 private:
60 void onEvent(const utils::Timeval& currentTime) final;
61
62 virtual void dispatchEvent() = 0;
63 virtual void unobservedEvent() = 0;
64
65 void setTimer(Timer* timer);
66
68
69 Timer* timer = nullptr;
71 utils::Timeval delay;
72
73 friend class Timer;
74 friend class TimerEventPublisher;
75 };
76
77} // namespace core
78
79#endif // CORE_TIMEREVENTRECEIVER_H
TimerEventReceiver & operator=(const TimerEventReceiver &)=delete
TimerEventReceiver(const TimerEventReceiver &)=delete
virtual void dispatchEvent()=0
utils::Timeval getTimeoutAbsolut() const
virtual void unobservedEvent()=0
TimerEventReceiver(const std::string &name, const utils::Timeval &delay)
TimerEventPublisher & timerEventPublisher
void onEvent(const utils::Timeval &currentTime) final
utils::Timeval getTimeoutRelative(const utils::Timeval &currentTime) const
std::function< void()> dispatcher
IntervalTimer(const std::function< void()> &dispatcher, const utils::Timeval &timeout, const std::string &name="IntervalTimer")
IntervalTimer(const IntervalTimer &)=delete
IntervalTimer & operator=(const IntervalTimer &timer)=delete
~IntervalTimer() override=default
void unobservedEvent() override
Definition Timer.h:37