You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
// Copyright (c) 2015 The Bitcoin Core developers |
|
// Distributed under the MIT software license, see the accompanying |
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php. |
|
|
|
#ifndef BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H |
|
#define BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H |
|
|
|
#include "validationinterface.h" |
|
#include <string> |
|
#include <map> |
|
|
|
class CBlockIndex; |
|
class CZMQAbstractNotifier; |
|
|
|
class CZMQNotificationInterface : public CValidationInterface |
|
{ |
|
public: |
|
virtual ~CZMQNotificationInterface(); |
|
|
|
static CZMQNotificationInterface* CreateWithArguments(const std::map<std::string, std::string> &args); |
|
|
|
protected: |
|
bool Initialize(); |
|
void Shutdown(); |
|
|
|
// CValidationInterface |
|
void SyncTransaction(const CTransaction& tx, const CBlockIndex *pindex, const CBlock* pblock); |
|
void UpdatedBlockTip(const CBlockIndex *pindex); |
|
|
|
private: |
|
CZMQNotificationInterface(); |
|
|
|
void *pcontext; |
|
std::list<CZMQAbstractNotifier*> notifiers; |
|
}; |
|
|
|
#endif // BITCOIN_ZMQ_ZMQNOTIFICATIONINTERFACE_H
|
|
|