summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Outgoing.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2014-09-03 11:01:11 -0230
committerMatthew Newhook <matthew@zeroc.com>2014-09-03 11:01:11 -0230
commit3b0588532354adf7bf3b86e611a8ae4996bfe6ad (patch)
tree253961cb83af7bc3b1dfc7633a8f934789476cd1 /cpp/src/Ice/Outgoing.cpp
parentMore work on ICE-2400: the send log thread now uses a separate communicator t... (diff)
downloadice-3b0588532354adf7bf3b86e611a8ae4996bfe6ad.tar.bz2
ice-3b0588532354adf7bf3b86e611a8ae4996bfe6ad.tar.xz
ice-3b0588532354adf7bf3b86e611a8ae4996bfe6ad.zip
- C#, Java: Removed Outgoing, fixed generated code to make synchronous
requests using AMI. - Java: AsyncResult is now an interface. - Added --arg to allTests.py. - Fixed operations, adapterDeactivation and metrics test to work with background IO. - Added Collocated interrupt test. - Added support for batch oneway requests using AMI. - Added test in operations for batch oneway requests using AMI.
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r--cpp/src/Ice/Outgoing.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp
index fce704f0fe9..66509a2bedc 100644
--- a/cpp/src/Ice/Outgoing.cpp
+++ b/cpp/src/Ice/Outgoing.cpp
@@ -54,7 +54,7 @@ IceInternal::Outgoing::Outgoing(IceProxy::Ice::Object* proxy, const string& oper
{
try
{
- _handler = proxy->__getRequestHandler(true);
+ _handler = proxy->__getRequestHandler();
_handler->prepareBatchRequest(&_os);
break;
}
@@ -150,7 +150,7 @@ IceInternal::Outgoing::invoke()
_exception.reset(0);
_sent = false;
- _handler = _proxy->__getRequestHandler(false);
+ _handler = _proxy->__getRequestHandler();
if(_handler->sendRequest(this)) // Request sent and no response expected, we're done.
{
@@ -542,7 +542,7 @@ IceInternal::BatchOutgoing::invoke()
RequestHandlerPtr handler;
try
{
- handler = _proxy->__getRequestHandler(false);
+ handler = _proxy->__getRequestHandler();
if(handler->sendRequest(this))
{
return;