diff options
Diffstat (limited to 'cpp/src/Ice/CommunicatorI.cpp')
-rw-r--r-- | cpp/src/Ice/CommunicatorI.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/CommunicatorI.cpp b/cpp/src/Ice/CommunicatorI.cpp index 1bdeb18fc40..2c759c91951 100644 --- a/cpp/src/Ice/CommunicatorI.cpp +++ b/cpp/src/Ice/CommunicatorI.cpp @@ -118,6 +118,12 @@ Ice::CommunicatorI::waitForShutdown() _instance->objectAdapterFactory()->waitForShutdown(); } +bool +Ice::CommunicatorI::isShutdown() const +{ + return _instance->objectAdapterFactory()->isShutdown(); +} + ObjectPrx Ice::CommunicatorI::stringToProxy(const string& s) const { |