diff options
Diffstat (limited to 'cpp/src/IcePack/AdapterI.cpp')
-rw-r--r-- | cpp/src/IcePack/AdapterI.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/cpp/src/IcePack/AdapterI.cpp b/cpp/src/IcePack/AdapterI.cpp index ca7d77c203e..54c5d6ac1ca 100644 --- a/cpp/src/IcePack/AdapterI.cpp +++ b/cpp/src/IcePack/AdapterI.cpp @@ -25,14 +25,19 @@ IcePack::StandaloneAdapterI::StandaloneAdapterI() } void -IcePack::StandaloneAdapterI::getDirectProxy_async(const AMD_Adapter_getDirectProxyPtr& cb, - bool activate, - const Ice::Current&) +StandaloneAdapterI::activate_async(const AMD_Adapter_activatePtr& cb, const Ice::Current&) { IceUtil::Mutex::Lock sync(*this); cb->ice_response(proxy); } +Ice::ObjectPrx +IcePack::StandaloneAdapterI::getDirectProxy(const Ice::Current&) const +{ + IceUtil::Mutex::Lock sync(*this); + return proxy; +} + void IcePack::StandaloneAdapterI::setDirectProxy(const Ice::ObjectPrx& prx, const Ice::Current&) { |