summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/servantLocator/TestAMDI.cpp
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2016-06-09 22:32:22 -0400
committerBernard Normier <bernard@zeroc.com>2016-06-09 22:33:32 -0400
commit69e99559db0bd9cfa076b65360af21c0ab417a12 (patch)
tree8961f24ff3e5dbaefcbe65c9905f460ce8eb0f3c /cpp/test/Ice/servantLocator/TestAMDI.cpp
parentICE-7166 - Change php library name to IcePHP.so on OS X (diff)
downloadice-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/servantLocator/TestAMDI.cpp')
-rw-r--r--cpp/test/Ice/servantLocator/TestAMDI.cpp56
1 files changed, 28 insertions, 28 deletions
diff --git a/cpp/test/Ice/servantLocator/TestAMDI.cpp b/cpp/test/Ice/servantLocator/TestAMDI.cpp
index 97dbce25a0b..5b674278c11 100644
--- a/cpp/test/Ice/servantLocator/TestAMDI.cpp
+++ b/cpp/test/Ice/servantLocator/TestAMDI.cpp
@@ -16,57 +16,57 @@ using namespace Ice;
#ifdef ICE_CPP11_MAPPING
void
-TestAMDI::requestFailedException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::requestFailedExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::unknownUserException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::unknownUserExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::unknownLocalException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::unknownLocalExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::unknownException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::unknownExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::userException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::userExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::localException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::localExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::stdException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::stdExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::cppException_async(function<void ()> response, function<void (exception_ptr)>, const Current&)
+TestAMDI::cppExceptionAsync(function<void ()> response, function<void (exception_ptr)>, const Current&)
{
response();
}
void
-TestAMDI::unknownExceptionWithServantException_async(function<void ()>,
- function<void (exception_ptr)> error,
- const Current&)
+TestAMDI::unknownExceptionWithServantExceptionAsync(function<void ()>,
+ function<void (exception_ptr)> error,
+ const Current&)
{
try
{
@@ -79,10 +79,10 @@ TestAMDI::unknownExceptionWithServantException_async(function<void ()>,
}
void
-TestAMDI::impossibleException_async(bool _cpp_throw,
- function<void (const string&)> response,
- function<void (exception_ptr)> error,
- const Current&)
+TestAMDI::impossibleExceptionAsync(bool _cpp_throw,
+ function<void (const string&)> response,
+ function<void (exception_ptr)> error,
+ const Current&)
{
if(_cpp_throw)
{
@@ -106,10 +106,10 @@ TestAMDI::impossibleException_async(bool _cpp_throw,
}
void
-TestAMDI::intfUserException_async(bool _cpp_throw,
- function<void (const string&)> response,
- function<void (exception_ptr)> error,
- const Current&)
+TestAMDI::intfUserExceptionAsync(bool _cpp_throw,
+ function<void (const string&)> response,
+ function<void (exception_ptr)> error,
+ const Current&)
{
if(_cpp_throw)
{
@@ -133,18 +133,18 @@ TestAMDI::intfUserException_async(bool _cpp_throw,
}
void
-TestAMDI::asyncResponse_async(function<void ()> response,
- function<void (exception_ptr)>,
- const Current&)
+TestAMDI::asyncResponseAsync(function<void ()> response,
+ function<void (exception_ptr)>,
+ const Current&)
{
response();
throw Ice::ObjectNotExistException(__FILE__, __LINE__);
}
void
-TestAMDI::asyncException_async(function<void ()> response,
- function<void (exception_ptr)> error,
- const Current&)
+TestAMDI::asyncExceptionAsync(function<void ()> response,
+ function<void (exception_ptr)> error,
+ const Current&)
{
try
{
@@ -158,9 +158,9 @@ TestAMDI::asyncException_async(function<void ()> response,
}
void
-TestAMDI::shutdown_async(function<void ()> response,
- function<void (exception_ptr)> error,
- const Current& current)
+TestAMDI::shutdownAsync(function<void ()> response,
+ function<void (exception_ptr)> error,
+ const Current& current)
{
current.adapter->deactivate();
response();