summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ConnectRequestHandler.h
diff options
context:
space:
mode:
authorZeroC Staff <git@zeroc.com>2007-12-12 21:01:52 -0500
committerZeroC Staff <git@zeroc.com>2007-12-12 21:01:52 -0500
commit883a047970693d63716aade9bd94f38c75012c7c (patch)
tree28f414393cc199bd852d618bcaf4702dd380759b /cpp/src/Ice/ConnectRequestHandler.h
parentFixed VC build (diff)
parentFixed bug 2592 (diff)
downloadice-883a047970693d63716aade9bd94f38c75012c7c.tar.bz2
ice-883a047970693d63716aade9bd94f38c75012c7c.tar.xz
ice-883a047970693d63716aade9bd94f38c75012c7c.zip
Merge branch 'master' of bernard@cvs.zeroc.com:/home/git/ice
Diffstat (limited to 'cpp/src/Ice/ConnectRequestHandler.h')
-rw-r--r--cpp/src/Ice/ConnectRequestHandler.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectRequestHandler.h b/cpp/src/Ice/ConnectRequestHandler.h
index bdf8d1b3a16..b05a33fdfec 100644
--- a/cpp/src/Ice/ConnectRequestHandler.h
+++ b/cpp/src/Ice/ConnectRequestHandler.h
@@ -19,6 +19,8 @@
#include <Ice/ProxyF.h>
#include <Ice/BasicStream.h>
+#include <deque>
+
namespace IceInternal
{
@@ -51,6 +53,9 @@ public:
virtual void addedProxy();
+ void flushRequestsWithException(const Ice::LocalException&);
+ void flushRequestsWithException(const LocalExceptionWrapper&);
+
private:
bool initialized();
@@ -75,7 +80,7 @@ private:
bool _initialized;
bool _flushing;
- std::vector<Request> _requests;
+ std::deque<Request> _requests;
bool _batchRequestInProgress;
size_t _batchRequestsSize;
BasicStream _batchStream;