diff options
author | Jose <jose@zeroc.com> | 2017-05-03 10:39:58 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2017-05-03 10:39:58 +0200 |
commit | ac031c312bf536898422b9e700d7f7210f8ca77b (patch) | |
tree | f9ca89b05aa4754aac3b3df62bc721b10b1c4632 /cpp/test/Ice/ami/TestI.cpp | |
parent | Removed trailing whitespace from code generated by slice2cs (diff) | |
download | ice-ac031c312bf536898422b9e700d7f7210f8ca77b.tar.bz2 ice-ac031c312bf536898422b9e700d7f7210f8ca77b.tar.xz ice-ac031c312bf536898422b9e700d7f7210f8ca77b.zip |
Fix (ICE-7839) - C++ AMI thread behavior in C#, Java and Python
Diffstat (limited to 'cpp/test/Ice/ami/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/ami/TestI.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/test/Ice/ami/TestI.cpp b/cpp/test/Ice/ami/TestI.cpp index 3e3a2fe1ea4..c9d2869e80a 100644 --- a/cpp/test/Ice/ami/TestI.cpp +++ b/cpp/test/Ice/ami/TestI.cpp @@ -174,6 +174,12 @@ TestIntfI::supportsFunctionalTests(const Ice::Current&) } void +TestIntfI::pingBiDir(ICE_IN(Ice::Identity) id, const Ice::Current& current) +{ + ICE_UNCHECKED_CAST(Test::PingReplyPrx, current.con->createProxy(id))->reply(); +} + +void TestIntfControllerI::holdAdapter(const Ice::Current&) { _adapter->hold(); |