diff options
author | Bernard Normier <bernard@zeroc.com> | 2016-06-09 22:32:22 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2016-06-09 22:33:32 -0400 |
commit | 69e99559db0bd9cfa076b65360af21c0ab417a12 (patch) | |
tree | 8961f24ff3e5dbaefcbe65c9905f460ce8eb0f3c /cpp/test/Ice/metrics/TestAMDI.cpp | |
parent | ICE-7166 - Change php library name to IcePHP.so on OS X (diff) | |
download | ice-69e99559db0bd9cfa076b65360af21c0ab417a12.tar.bz2 ice-69e99559db0bd9cfa076b65360af21c0ab417a12.tar.xz ice-69e99559db0bd9cfa076b65360af21c0ab417a12.zip |
Renamed C++11 AMI/AMD suffix: _async to Async
Diffstat (limited to 'cpp/test/Ice/metrics/TestAMDI.cpp')
-rw-r--r-- | cpp/test/Ice/metrics/TestAMDI.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/test/Ice/metrics/TestAMDI.cpp b/cpp/test/Ice/metrics/TestAMDI.cpp index 51d2e385fa1..df9890f3e6f 100644 --- a/cpp/test/Ice/metrics/TestAMDI.cpp +++ b/cpp/test/Ice/metrics/TestAMDI.cpp @@ -14,20 +14,20 @@ using namespace std; #ifdef ICE_CPP11_MAPPING void -MetricsI::op_async(function<void ()> response, function<void (exception_ptr)>, const Ice::Current&) +MetricsI::opAsync(function<void ()> response, function<void (exception_ptr)>, const Ice::Current&) { response(); } void -MetricsI::fail_async(function<void ()> response, function<void (exception_ptr)>, const Ice::Current& current) +MetricsI::failAsync(function<void ()> response, function<void (exception_ptr)>, const Ice::Current& current) { current.con->close(true); response(); } void -MetricsI::opWithUserException_async(function<void ()>, function<void (exception_ptr)> error, const Ice::Current&) +MetricsI::opWithUserExceptionAsync(function<void ()>, function<void (exception_ptr)> error, const Ice::Current&) { try { @@ -40,7 +40,7 @@ MetricsI::opWithUserException_async(function<void ()>, function<void (exception_ } void -MetricsI::opWithRequestFailedException_async(function<void ()>, function<void (exception_ptr)> error, +MetricsI::opWithRequestFailedExceptionAsync(function<void ()>, function<void (exception_ptr)> error, const Ice::Current&) { try @@ -54,7 +54,7 @@ MetricsI::opWithRequestFailedException_async(function<void ()>, function<void (e } void -MetricsI::opWithLocalException_async(function<void ()>, function<void (exception_ptr)> error, const Ice::Current&) +MetricsI::opWithLocalExceptionAsync(function<void ()>, function<void (exception_ptr)> error, const Ice::Current&) { try { @@ -67,13 +67,13 @@ MetricsI::opWithLocalException_async(function<void ()>, function<void (exception } void -MetricsI::opWithUnknownException_async(function<void ()>, function<void (exception_ptr)>, const Ice::Current&) +MetricsI::opWithUnknownExceptionAsync(function<void ()>, function<void (exception_ptr)>, const Ice::Current&) { throw "Test"; } void -MetricsI::opByteS_async(Test::ByteSeq, function<void ()> response, function<void (exception_ptr)>, const Ice::Current&) +MetricsI::opByteSAsync(Test::ByteSeq, function<void ()> response, function<void (exception_ptr)>, const Ice::Current&) { response(); } |