diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-08-06 10:42:54 -0500 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2019-08-06 10:42:54 -0500 |
commit | 00fb9c475e7bd68a12d6d581539862c31aeb2e74 (patch) | |
tree | 2f8423fff1914998fd858e1b4214a0394437974c /controller/PostgreSQL.hpp | |
parent | 3c776675b3824d4497d913386793efaece2ee7d1 (diff) | |
download | infinitytier-00fb9c475e7bd68a12d6d581539862c31aeb2e74.tar.gz infinitytier-00fb9c475e7bd68a12d6d581539862c31aeb2e74.zip |
More work on DB mirroring.
Diffstat (limited to 'controller/PostgreSQL.hpp')
-rw-r--r-- | controller/PostgreSQL.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/controller/PostgreSQL.hpp b/controller/PostgreSQL.hpp index ce6fb242..6b0ea996 100644 --- a/controller/PostgreSQL.hpp +++ b/controller/PostgreSQL.hpp @@ -55,7 +55,7 @@ public: virtual bool waitForReady(); virtual bool isReady(); - virtual void save(nlohmann::json &record); + virtual bool save(nlohmann::json &record,bool notifyListeners); virtual void eraseNetwork(const uint64_t networkId); virtual void eraseMember(const uint64_t networkId, const uint64_t memberId); virtual void nodeIsOnline(const uint64_t networkId, const uint64_t memberId, const InetAddress &physicalAddress); @@ -87,9 +87,12 @@ private: PGconn * getPgConn( OverrideMode m = ALLOW_PGBOUNCER_OVERRIDE ); + const Identity _myId; + const Address _myAddress; + std::string _myAddressStr; std::string _connString; - BlockingQueue<nlohmann::json *> _commitQueue; + BlockingQueue< std::pair<nlohmann::json,bool> > _commitQueue; std::thread _heartbeatThread; std::thread _membersDbWatcher; |