summaryrefslogtreecommitdiff
path: root/python/test/Ice/optional/ServerAMD.py
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2016-08-16 16:37:18 +0200
committerBenoit Foucher <benoit@zeroc.com>2016-08-16 16:37:18 +0200
commit88293201e566c982830482601e878ff4bc643782 (patch)
treeb0ffc2633b8404cde06d4786927b1f6b63024849 /python/test/Ice/optional/ServerAMD.py
parentFixed ICE-7273 - C# AMI test failure (diff)
downloadice-88293201e566c982830482601e878ff4bc643782.tar.bz2
ice-88293201e566c982830482601e878ff4bc643782.tar.xz
ice-88293201e566c982830482601e878ff4bc643782.zip
C# mapping changes
- user exceptions are no longer checked on the server side (ICE-6980) - support for ["marshaled-result"] metadata - AMD operations now return a Task - improved dispatch interceptors - PropertiesAdminI::setProperties impl. now invokes callbacks synchronously
Diffstat (limited to 'python/test/Ice/optional/ServerAMD.py')
-rwxr-xr-xpython/test/Ice/optional/ServerAMD.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/python/test/Ice/optional/ServerAMD.py b/python/test/Ice/optional/ServerAMD.py
index ab0bfc28abf..bd95c1feb33 100755
--- a/python/test/Ice/optional/ServerAMD.py
+++ b/python/test/Ice/optional/ServerAMD.py
@@ -148,6 +148,30 @@ class InitialI(Test.Initial):
def opVoid_async(self, cb, current=None):
cb.ice_response()
+ def opMStruct1_async(self, cb, current):
+ cb.ice_response(Test.SmallStruct())
+
+ def opMStruct2_async(self, cb, p1, current):
+ cb.ice_response(p1, p1)
+
+ def opMSeq1_async(self, cb, current):
+ cb.ice_response([])
+
+ def opMSeq2_async(self, cb, p1, current):
+ cb.ice_response(p1, p1)
+
+ def opMDict1_async(self, cb, current):
+ cb.ice_response({})
+
+ def opMDict2_async(self, cb, p1, current):
+ cb.ice_response(p1, p1)
+
+ def opMG1_async(self, cb, current):
+ cb.ice_response(Test.G())
+
+ def opMG2_async(self, cb, p1, current):
+ cb.ice_response(p1, p1)
+
def supportsRequiredParams_async(self, cb, current=None):
cb.ice_response(False)