diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2006-11-08 16:12:12 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2006-11-08 16:12:12 +0000 |
commit | 3ee4d26b9d2a157f1b5b7702ec5ed3b2cb31bce0 (patch) | |
tree | 5e632b843fee70c4e1ce6f5a8dbc82eed06f8b3f /cppe/src | |
parent | Added ActivationTimedOut state (diff) | |
download | ice-3ee4d26b9d2a157f1b5b7702ec5ed3b2cb31bce0.tar.bz2 ice-3ee4d26b9d2a157f1b5b7702ec5ed3b2cb31bce0.tar.xz ice-3ee4d26b9d2a157f1b5b7702ec5ed3b2cb31bce0.zip |
Added ice_getCachedConnection
Diffstat (limited to 'cppe/src')
-rw-r--r-- | cppe/src/IceE/Proxy.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cppe/src/IceE/Proxy.cpp b/cppe/src/IceE/Proxy.cpp index da3f5a36812..2608eda96c8 100644 --- a/cppe/src/IceE/Proxy.cpp +++ b/cppe/src/IceE/Proxy.cpp @@ -691,6 +691,13 @@ IceProxy::Ice::Object::ice_getConnection() return _connection; } +ConnectionPtr +IceProxy::Ice::Object::ice_getCachedConnection() +{ + ::IceUtil::Mutex::Lock sync(*this); + return _connection; +} + ReferencePtr IceProxy::Ice::Object::__reference() const { |