diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-10-29 14:11:27 -0400 |
---|---|---|
committer | Joe George <joe@zeroc.com> | 2021-02-01 16:46:20 -0500 |
commit | 9f22d436c536c18df0e3c434162048490c80191f (patch) | |
tree | da5257cb9435bcdbe3614e4f758e36244cac5ed0 /cpp/src/IceGrid/NodeSessionI.h | |
parent | Fixed doxygen warnings and updated configs. (diff) | |
download | ice-9f22d436c536c18df0e3c434162048490c80191f.tar.bz2 ice-9f22d436c536c18df0e3c434162048490c80191f.tar.xz ice-9f22d436c536c18df0e3c434162048490c80191f.zip |
Remove IcePatch2 (#602)
Removed IcePatch2 and the corresponding distrib and patching features in IceGrid and IceGridGUI.
Diffstat (limited to 'cpp/src/IceGrid/NodeSessionI.h')
-rw-r--r-- | cpp/src/IceGrid/NodeSessionI.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/cpp/src/IceGrid/NodeSessionI.h b/cpp/src/IceGrid/NodeSessionI.h index 637f0ceac2f..b3ee36155b5 100644 --- a/cpp/src/IceGrid/NodeSessionI.h +++ b/cpp/src/IceGrid/NodeSessionI.h @@ -17,36 +17,6 @@ typedef IceUtil::Handle<Database> DatabasePtr; class TraceLevels; typedef IceUtil::Handle<TraceLevels> TraceLevelsPtr; -class PatcherFeedbackAggregator : public IceUtil::Mutex, public IceUtil::Shared -{ -public: - - PatcherFeedbackAggregator(Ice::Identity, const TraceLevelsPtr&, const std::string&, const std::string&, int); - virtual ~PatcherFeedbackAggregator(); - - void finished(const std::string&); - void failed(const std::string&, const std::string&); - -protected: - - virtual void exception(const Ice::Exception&) = 0; - virtual void response() = 0; - -private: - - void checkIfDone(); - - const Ice::Identity _id; - const TraceLevelsPtr _traceLevels; - const std::string _type; - const std::string _name; - const int _count; - std::set<std::string> _successes; - std::set<std::string> _failures; - Ice::StringSeq _reasons; -}; -typedef IceUtil::Handle<PatcherFeedbackAggregator> PatcherFeedbackAggregatorPtr; - class NodeSessionI : public NodeSession, public IceUtil::Mutex { public: @@ -65,8 +35,6 @@ public: virtual IceUtil::Time timestamp() const; virtual void shutdown(); - void patch(const PatcherFeedbackAggregatorPtr&, const std::string&, const std::string&, - const InternalDistributionDescriptorPtr&, bool); const NodePrx& getNode() const; const InternalNodeInfoPtr& getInfo() const; @@ -74,7 +42,6 @@ public: NodeSessionPrx getProxy() const; bool isDestroyed() const; - void removeFeedback(const PatcherFeedbackPtr&, const Ice::Identity&); private: @@ -91,7 +58,6 @@ private: IceUtil::Time _timestamp; LoadInfo _load; bool _destroy; - std::set<PatcherFeedbackPtr> _feedbacks; }; typedef IceUtil::Handle<NodeSessionI> NodeSessionIPtr; |