comparison Framework/Loaders/LoaderStateMachine.h @ 977:262a0244e9b2 toa2019090201

Added missing Unregister for objects that register by the broker + logs + guard in FetchContext
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 02 Sep 2019 17:29:26 +0200
parents 38409549db43
children e713f1a99861 2d8ab34c8c91
comparison
equal deleted inserted replaced
976:3abc47e051c8 977:262a0244e9b2
93 void HandleSuccessMessage(const T& message); 93 void HandleSuccessMessage(const T& message);
94 94
95 typedef std::list<IOracleCommand*> PendingCommands; 95 typedef std::list<IOracleCommand*> PendingCommands;
96 96
97 IOracle& oracle_; 97 IOracle& oracle_;
98 IObservable& oracleObservable_;
98 bool active_; 99 bool active_;
99 unsigned int simultaneousDownloads_; 100 unsigned int simultaneousDownloads_;
100 PendingCommands pendingCommands_; 101 PendingCommands pendingCommands_;
101 unsigned int activeCommands_; 102 unsigned int activeCommands_;
102 103