diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-07-01 09:26:05 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-07-01 09:26:05 +0000 |
commit | 50c0153ec1b849eb65f28fe14bf15eaf5938af7e (patch) | |
tree | d00de2b50f8256af6eeb45557d577543b968007f /cpp/src/IceGrid/Topics.cpp | |
parent | Changed ant version req to 1.6.1 for deleteonexit (diff) | |
download | ice-50c0153ec1b849eb65f28fe14bf15eaf5938af7e.tar.bz2 ice-50c0153ec1b849eb65f28fe14bf15eaf5938af7e.tar.xz ice-50c0153ec1b849eb65f28fe14bf15eaf5938af7e.zip |
Removed applicationSynced call, fixed node observer nodeUp method to not
include inactive servers.
Diffstat (limited to 'cpp/src/IceGrid/Topics.cpp')
-rw-r--r-- | cpp/src/IceGrid/Topics.cpp | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/cpp/src/IceGrid/Topics.cpp b/cpp/src/IceGrid/Topics.cpp index 1d4372cb370..5c591bf64bb 100644 --- a/cpp/src/IceGrid/Topics.cpp +++ b/cpp/src/IceGrid/Topics.cpp @@ -263,24 +263,6 @@ RegistryObserverTopic::applicationRemoved(int serial, const string& name, const } void -RegistryObserverTopic::applicationSynced(int serial, const ApplicationDescriptorPtr& desc, const Ice::Current&) -{ - Lock sync(*this); - - updateSerial(serial); - for(ApplicationDescriptorSeq::iterator p = _applications.begin(); p != _applications.end(); ++p) - { - if((*p)->name == desc->name) - { - *p = desc; - break; - } - } - - _publisher->applicationSynced(serial, desc); -} - -void RegistryObserverTopic::applicationUpdated(int serial, const ApplicationUpdateDescriptor& desc, const Ice::Current& c) { Lock sync(*this); |