summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ConnectionFactory.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2007-01-25 16:50:20 +0000
committerMark Spruiell <mes@zeroc.com>2007-01-25 16:50:20 +0000
commit2af1be4b75d36ed2022c304c9030ff34162d44db (patch)
tree229182241b85b3dd9b57cf56a02e774b83fcd47a /cpp/src/Ice/ConnectionFactory.h
parentIceGrid file cache fixes (diff)
downloadice-2af1be4b75d36ed2022c304c9030ff34162d44db.tar.bz2
ice-2af1be4b75d36ed2022c304c9030ff34162d44db.tar.xz
ice-2af1be4b75d36ed2022c304c9030ff34162d44db.zip
adding thread-per-connection settings for proxies & OAs
Diffstat (limited to 'cpp/src/Ice/ConnectionFactory.h')
-rw-r--r--cpp/src/Ice/ConnectionFactory.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/Ice/ConnectionFactory.h b/cpp/src/Ice/ConnectionFactory.h
index 830175f28fd..d7e58df05f5 100644
--- a/cpp/src/Ice/ConnectionFactory.h
+++ b/cpp/src/Ice/ConnectionFactory.h
@@ -44,7 +44,7 @@ public:
void waitUntilFinished();
- Ice::ConnectionIPtr create(const std::vector<EndpointIPtr>&, bool, bool&);
+ Ice::ConnectionIPtr create(const std::vector<EndpointIPtr>&, bool, bool, bool&);
void setRouterInfo(const RouterInfoPtr&);
void removeAdapter(const Ice::ObjectAdapterPtr&);
void flushBatchRequests();
@@ -136,6 +136,9 @@ private:
std::list<Ice::ConnectionIPtr> _connections;
State _state;
+
+ bool _threadPerConnection;
+ size_t _threadPerConnectionStackSize;
};
}