Bitcoin Core 22.99.0
P2P Digital Currency
zmqnotificationinterface.h
Go to the documentation of this file.
1// Copyright (c) 2015-2020 The Bitcoin Core developers
2// Distributed under the MIT software license, see the accompanying
3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
4
5#ifndef BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
6#define BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
7
9#include <list>
10#include <memory>
11
12class CBlockIndex;
14
16{
17public:
19
20 std::list<const CZMQAbstractNotifier*> GetActiveNotifiers() const;
21
23
24protected:
25 bool Initialize();
26 void Shutdown();
27
28 // CValidationInterface
29 void TransactionAddedToMempool(const CTransactionRef& tx, uint64_t mempool_sequence) override;
30 void TransactionRemovedFromMempool(const CTransactionRef& tx, MemPoolRemovalReason reason, uint64_t mempool_sequence) override;
31 void BlockConnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexConnected) override;
32 void BlockDisconnected(const std::shared_ptr<const CBlock>& pblock, const CBlockIndex* pindexDisconnected) override;
33 void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override;
34
35private:
37
38 void *pcontext;
39 std::list<std::unique_ptr<CZMQAbstractNotifier>> notifiers;
40};
41
43
44#endif // BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: chain.h:146
Implement this to subscribe to events generated in validation.
void BlockConnected(const std::shared_ptr< const CBlock > &pblock, const CBlockIndex *pindexConnected) override
Notifies listeners of a block being connected.
static CZMQNotificationInterface * Create()
void TransactionAddedToMempool(const CTransactionRef &tx, uint64_t mempool_sequence) override
Notifies listeners of a transaction having been added to mempool.
void UpdatedBlockTip(const CBlockIndex *pindexNew, const CBlockIndex *pindexFork, bool fInitialDownload) override
Notifies listeners when the block chain tip advances.
std::list< std::unique_ptr< CZMQAbstractNotifier > > notifiers
void BlockDisconnected(const std::shared_ptr< const CBlock > &pblock, const CBlockIndex *pindexDisconnected) override
Notifies listeners of a block being disconnected.
void TransactionRemovedFromMempool(const CTransactionRef &tx, MemPoolRemovalReason reason, uint64_t mempool_sequence) override
Notifies listeners of a transaction leaving mempool.
std::list< const CZMQAbstractNotifier * > GetActiveNotifiers() const
std::shared_ptr< const CTransaction > CTransactionRef
Definition: transaction.h:386
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
Definition: txmempool.h:341
CZMQNotificationInterface * g_zmq_notification_interface