diff options
Diffstat (limited to 'csharp/test/Ice/proxy/MyDerivedClassAMDI.cs')
-rw-r--r-- | csharp/test/Ice/proxy/MyDerivedClassAMDI.cs | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/csharp/test/Ice/proxy/MyDerivedClassAMDI.cs b/csharp/test/Ice/proxy/MyDerivedClassAMDI.cs index db1eece2fd0..caeaed9c6fa 100644 --- a/csharp/test/Ice/proxy/MyDerivedClassAMDI.cs +++ b/csharp/test/Ice/proxy/MyDerivedClassAMDI.cs @@ -7,6 +7,8 @@ // // ********************************************************************** +using System; +using System.Threading.Tasks; using System.Collections.Generic; public sealed class MyDerivedClassI : Test.MyDerivedClass @@ -15,22 +17,22 @@ public sealed class MyDerivedClassI : Test.MyDerivedClass { } - public override void echo_async(Test.AMD_MyDerivedClass_echo cb, - Ice.ObjectPrx obj, - Ice.Current c) + public override void + echoAsync(Ice.ObjectPrx obj, Action<Ice.ObjectPrx> response, Action<Exception> exception, Ice.Current c) { - cb.ice_response(obj); + response(obj); } - public override void shutdown_async(Test.AMD_MyClass_shutdown cb, Ice.Current current) + public override void shutdownAsync(Action response, Action<Exception> exception, Ice.Current current) { current.adapter.getCommunicator().shutdown(); - cb.ice_response(); + response(); } - public override void getContext_async(Test.AMD_MyClass_getContext cb, Ice.Current current) + public override void + getContextAsync(Action<Dictionary<string, string>> response, Action<Exception> exception, Ice.Current current) { - cb.ice_response(_ctx); + response(_ctx); } public override bool ice_isA(string s, Ice.Current current) |