diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-08-16 16:37:18 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-08-16 16:37:18 +0200 |
commit | 88293201e566c982830482601e878ff4bc643782 (patch) | |
tree | b0ffc2633b8404cde06d4786927b1f6b63024849 /python/test/Ice/optional/Server.py | |
parent | Fixed ICE-7273 - C# AMI test failure (diff) | |
download | ice-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/Server.py')
-rwxr-xr-x | python/test/Ice/optional/Server.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py index 106fe5182eb..c865c37b1c3 100755 --- a/python/test/Ice/optional/Server.py +++ b/python/test/Ice/optional/Server.py @@ -147,6 +147,30 @@ class InitialI(Test.Initial): def opVoid(self, current=None): pass + def opMStruct1(self, current): + return Test.SmallStruct() + + def opMStruct2(self, p1, current): + return (p1, p1) + + def opMSeq1(self, current): + return [] + + def opMSeq2(self, p1, current): + return (p1, p1) + + def opMDict1(self, current): + return {} + + def opMDict2(self, p1, current): + return (p1, p1) + + def opMG1(self, current): + return Test.G() + + def opMG2(self, p1, current): + return (p1, p1) + def supportsRequiredParams(self, current=None): return False |