diff options
author | Marc Laukien <marc@zeroc.com> | 2004-02-15 21:19:54 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2004-02-15 21:19:54 +0000 |
commit | 3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2 (patch) | |
tree | f04bbbc008badb7eb13e499ff92fa7cfa100b888 /cpp/src/Ice/ProxyFactory.h | |
parent | minor (diff) | |
download | ice-3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2.tar.bz2 ice-3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2.tar.xz ice-3ede1ddccf6c3f4c2f8a19fc8d16e9827c607cc2.zip |
more AMI stuff
Diffstat (limited to 'cpp/src/Ice/ProxyFactory.h')
-rw-r--r-- | cpp/src/Ice/ProxyFactory.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/cpp/src/Ice/ProxyFactory.h b/cpp/src/Ice/ProxyFactory.h index e148fc0e7cb..59d6dc9e45b 100644 --- a/cpp/src/Ice/ProxyFactory.h +++ b/cpp/src/Ice/ProxyFactory.h @@ -21,25 +21,26 @@ #include <Ice/InstanceF.h> #include <Ice/ReferenceF.h> #include <Ice/ProxyF.h> +#include <Ice/Exception.h> namespace IceInternal { class BasicStream; -class ProxyFactory : public ::IceUtil::Shared +class ProxyFactory : public IceUtil::Shared { public: - ::Ice::ObjectPrx stringToProxy(const std::string&) const; - std::string proxyToString(const ::Ice::ObjectPrx&) const; + Ice::ObjectPrx stringToProxy(const std::string&) const; + std::string proxyToString(const Ice::ObjectPrx&) const; - ::Ice::ObjectPrx streamToProxy(BasicStream*) const; - void proxyToStream(const ::Ice::ObjectPrx&, BasicStream*) const; + Ice::ObjectPrx streamToProxy(BasicStream*) const; + void proxyToStream(const Ice::ObjectPrx&, BasicStream*) const; - ::Ice::ObjectPrx referenceToProxy(const ReferencePtr&) const; + Ice::ObjectPrx referenceToProxy(const ReferencePtr&) const; - const ::std::vector<int>& getRetryIntervals() const; + void checkRetryAfterException(const Ice::LocalException&, int&) const; private: @@ -48,7 +49,7 @@ private: friend class Instance; InstancePtr _instance; - ::std::vector<int> _retryIntervals; + std::vector<int> _retryIntervals; }; } |