From 3b0588532354adf7bf3b86e611a8ae4996bfe6ad Mon Sep 17 00:00:00 2001 From: Matthew Newhook Date: Wed, 3 Sep 2014 11:01:11 -0230 Subject: - 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. --- cpp/src/Ice/Outgoing.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src/Ice/Outgoing.cpp') 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; -- cgit v1.2.3