veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
signals.hpp
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_SIGNALS_HPP
7#define VERIBLOCK_POP_CPP_SIGNALS_HPP
8
9#include "third_party/Signals.hpp"
10
12
13namespace altintegration {
14namespace signals {
15
16template <typename SignalSignature>
17using Signal = Simple::Signal<SignalSignature>;
18
20struct Connection {
21 Connection(std::function<void()> unsubscribe)
22 : unsub_(std::move(unsubscribe)) {}
23
24 ~Connection() { unsub_(); }
25
26 private:
27 std::function<void()> unsub_;
28};
29
30} // namespace signals
31
32} // namespace altintegration
33
34#endif // VERIBLOCK_POP_CPP_SIGNALS_HPP
Defines logging helpers.
Definition: block.hpp:14
lifetime of connection MUST always be less than of corresponding Signal
Definition: signals.hpp:20