summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/interceptor/MyObjectI.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/interceptor/MyObjectI.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/interceptor/MyObjectI.cpp')
-rw-r--r--cpp/test/Ice/interceptor/MyObjectI.cpp50
1 files changed, 25 insertions, 25 deletions
diff --git a/cpp/test/Ice/interceptor/MyObjectI.cpp b/cpp/test/Ice/interceptor/MyObjectI.cpp
index 7842a5ab726..34d803ac5b9 100644
--- a/cpp/test/Ice/interceptor/MyObjectI.cpp
+++ b/cpp/test/Ice/interceptor/MyObjectI.cpp
@@ -82,11 +82,11 @@ MyObjectI::badSystemAdd(int, int, const Ice::Current&)
#ifdef ICE_CPP11_MAPPING
void
-MyObjectI::amdAdd_async(int x,
- int y,
- function<void (int)> response,
- function<void (exception_ptr)>,
- const Ice::Current&)
+MyObjectI::amdAddAsync(int x,
+ int y,
+ function<void (int)> response,
+ function<void (exception_ptr)>,
+ const Ice::Current&)
{
thread t(
[x, y, response]()
@@ -98,11 +98,11 @@ MyObjectI::amdAdd_async(int x,
}
void
-MyObjectI::amdAddWithRetry_async(int x,
- int y,
- function<void (int)> response,
- function<void (exception_ptr)>,
- const Ice::Current& current)
+MyObjectI::amdAddWithRetryAsync(int x,
+ int y,
+ function<void (int)> response,
+ function<void (exception_ptr)>,
+ const Ice::Current& current)
{
thread t(
[x, y, response]()
@@ -121,11 +121,11 @@ MyObjectI::amdAddWithRetry_async(int x,
}
void
-MyObjectI::amdBadAdd_async(int x,
- int y,
- function<void (int)>,
- function<void (exception_ptr)> error,
- const Ice::Current&)
+MyObjectI::amdBadAddAsync(int x,
+ int y,
+ function<void (int)>,
+ function<void (exception_ptr)> error,
+ const Ice::Current&)
{
thread t(
[x, y, error]()
@@ -144,11 +144,11 @@ MyObjectI::amdBadAdd_async(int x,
}
void
-MyObjectI::amdNotExistAdd_async(int x,
- int y,
- function<void (int)>,
- function<void (exception_ptr)> error,
- const Ice::Current&)
+MyObjectI::amdNotExistAddAsync(int x,
+ int y,
+ function<void (int)>,
+ function<void (exception_ptr)> error,
+ const Ice::Current&)
{
thread t(
[x, y, error]()
@@ -167,11 +167,11 @@ MyObjectI::amdNotExistAdd_async(int x,
}
void
-MyObjectI::amdBadSystemAdd_async(int x,
- int y,
- function<void (int)>,
- function<void (exception_ptr)> error,
- const Ice::Current&)
+MyObjectI::amdBadSystemAddAsync(int x,
+ int y,
+ function<void (int)>,
+ function<void (exception_ptr)> error,
+ const Ice::Current&)
{
thread t(
[x, y, error]()