5#ifndef BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
6#define BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
23 static std::unique_ptr<CZMQNotificationInterface>
Create(
32 std::shared_ptr<
const std::vector<Coin>>,
33 uint64_t mempool_sequence)
override;
36 uint64_t mempool_sequence)
override;
43 bool fInitialDownload)
override;
49 std::list<std::unique_ptr<CZMQAbstractNotifier>>
notifiers;
The block chain is a tree shaped structure starting with the genesis block at the root,...
Implement this to subscribe to events generated in validation.
void TransactionAddedToMempool(const CTransactionRef &tx, std::shared_ptr< const std::vector< Coin > >, uint64_t mempool_sequence) override
Notifies listeners of a transaction having been added to mempool.
static std::unique_ptr< CZMQNotificationInterface > Create(std::function< bool(CBlock &, const CBlockIndex &)> get_block_by_index)
virtual ~CZMQNotificationInterface()
void BlockConnected(const std::shared_ptr< const CBlock > &pblock, const CBlockIndex *pindexConnected) override
Notifies listeners of a block being connected.
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.
CZMQNotificationInterface()
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
MemPoolRemovalReason
Reason why a transaction was removed from the mempool, this is passed to the notification signal.
std::unique_ptr< CZMQNotificationInterface > g_zmq_notification_interface