// ********************************************************************** // // Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** using System; using System.Collections.Generic; using Test; public sealed class MyClassI : MyClass { public override void shutdown_async(AMD_MyClass_shutdown cb, Ice.Current current) { current.adapter.getCommunicator().shutdown(); cb.ice_response(); } public override void opAByteS_async(AMD_MyClass_opAByteS cb, byte[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLByteS_async(AMD_MyClass_opLByteS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKByteS_async(AMD_MyClass_opKByteS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQByteS_async(AMD_MyClass_opQByteS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSByteS_async(AMD_MyClass_opSByteS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCByteS_async(AMD_MyClass_opCByteS cb, CByteS i, Ice.Current current) { cb.ice_response(i, i); } public override void opABoolS_async(AMD_MyClass_opABoolS cb, bool[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLBoolS_async(AMD_MyClass_opLBoolS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKBoolS_async(AMD_MyClass_opKBoolS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQBoolS_async(AMD_MyClass_opQBoolS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSBoolS_async(AMD_MyClass_opSBoolS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCBoolS_async(AMD_MyClass_opCBoolS cb, CBoolS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAShortS_async(AMD_MyClass_opAShortS cb, short[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLShortS_async(AMD_MyClass_opLShortS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKShortS_async(AMD_MyClass_opKShortS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQShortS_async(AMD_MyClass_opQShortS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSShortS_async(AMD_MyClass_opSShortS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCShortS_async(AMD_MyClass_opCShortS cb, CShortS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAIntS_async(AMD_MyClass_opAIntS cb, int[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLIntS_async(AMD_MyClass_opLIntS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKIntS_async(AMD_MyClass_opKIntS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQIntS_async(AMD_MyClass_opQIntS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSIntS_async(AMD_MyClass_opSIntS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCIntS_async(AMD_MyClass_opCIntS cb, CIntS i, Ice.Current current) { cb.ice_response(i, i); } public override void opALongS_async(AMD_MyClass_opALongS cb, long[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLLongS_async(AMD_MyClass_opLLongS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKLongS_async(AMD_MyClass_opKLongS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQLongS_async(AMD_MyClass_opQLongS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSLongS_async(AMD_MyClass_opSLongS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCLongS_async(AMD_MyClass_opCLongS cb, CLongS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAFloatS_async(AMD_MyClass_opAFloatS cb, float[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLFloatS_async(AMD_MyClass_opLFloatS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKFloatS_async(AMD_MyClass_opKFloatS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQFloatS_async(AMD_MyClass_opQFloatS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSFloatS_async(AMD_MyClass_opSFloatS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCFloatS_async(AMD_MyClass_opCFloatS cb, CFloatS i, Ice.Current current) { cb.ice_response(i, i); } public override void opADoubleS_async(AMD_MyClass_opADoubleS cb, double[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLDoubleS_async(AMD_MyClass_opLDoubleS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKDoubleS_async(AMD_MyClass_opKDoubleS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQDoubleS_async(AMD_MyClass_opQDoubleS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSDoubleS_async(AMD_MyClass_opSDoubleS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCDoubleS_async(AMD_MyClass_opCDoubleS cb, CDoubleS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAStringS_async(AMD_MyClass_opAStringS cb, string[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLStringS_async(AMD_MyClass_opLStringS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKStringS_async(AMD_MyClass_opKStringS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQStringS_async(AMD_MyClass_opQStringS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSStringS_async(AMD_MyClass_opSStringS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCStringS_async(AMD_MyClass_opCStringS cb, CStringS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAObjectS_async(AMD_MyClass_opAObjectS cb, Ice.Object[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLObjectS_async(AMD_MyClass_opLObjectS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opCObjectS_async(AMD_MyClass_opCObjectS cb, CObjectS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAObjectPrxS_async(AMD_MyClass_opAObjectPrxS cb, Ice.ObjectPrx[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLObjectPrxS_async(AMD_MyClass_opLObjectPrxS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKObjectPrxS_async(AMD_MyClass_opKObjectPrxS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQObjectPrxS_async(AMD_MyClass_opQObjectPrxS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSObjectPrxS_async(AMD_MyClass_opSObjectPrxS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCObjectPrxS_async(AMD_MyClass_opCObjectPrxS cb, CObjectPrxS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAStructS_async(AMD_MyClass_opAStructS cb, S[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLStructS_async(AMD_MyClass_opLStructS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKStructS_async(AMD_MyClass_opKStructS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQStructS_async(AMD_MyClass_opQStructS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSStructS_async(AMD_MyClass_opSStructS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCStructS_async(AMD_MyClass_opCStructS cb, CStructS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAStructSD_async(AMD_MyClass_opAStructSD cb, SD[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLStructSD_async(AMD_MyClass_opLStructSD cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKStructSD_async(AMD_MyClass_opKStructSD cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQStructSD_async(AMD_MyClass_opQStructSD cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSStructSD_async(AMD_MyClass_opSStructSD cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCStructSD_async(AMD_MyClass_opCStructSD cb, CStructSD i, Ice.Current current) { cb.ice_response(i, i); } public override void opACVS_async(AMD_MyClass_opACVS cb, CV[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLCVS_async(AMD_MyClass_opLCVS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opCCVS_async(AMD_MyClass_opCCVS cb, CCVS i, Ice.Current current) { cb.ice_response(i, i); } public override void opACVPrxS_async(AMD_MyClass_opACVPrxS cb, CVPrx[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLCVPrxS_async(AMD_MyClass_opLCVPrxS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKCVPrxS_async(AMD_MyClass_opKCVPrxS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQCVPrxS_async(AMD_MyClass_opQCVPrxS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSCVPrxS_async(AMD_MyClass_opSCVPrxS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCCVPrxS_async(AMD_MyClass_opCCVPrxS cb, CCVPrxS i, Ice.Current current) { cb.ice_response(i, i); } public override void opACRS_async(AMD_MyClass_opACRS cb, CR[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLCRS_async(AMD_MyClass_opLCRS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opCCRS_async(AMD_MyClass_opCCRS cb, CCRS i, Ice.Current current) { cb.ice_response(i, i); } public override void opAEnS_async(AMD_MyClass_opAEnS cb, En[] i, Ice.Current current) { cb.ice_response(i, i); } public override void opLEnS_async(AMD_MyClass_opLEnS cb, List i, Ice.Current current) { cb.ice_response(i, i); } public override void opKEnS_async(AMD_MyClass_opKEnS cb, LinkedList i, Ice.Current current) { cb.ice_response(i, i); } public override void opQEnS_async(AMD_MyClass_opQEnS cb, Queue i, Ice.Current current) { cb.ice_response(i, i); } public override void opSEnS_async(AMD_MyClass_opSEnS cb, Stack i, Ice.Current current) { cb.ice_response(i, i); } public override void opCEnS_async(AMD_MyClass_opCEnS cb, CEnS i, Ice.Current current) { cb.ice_response(i, i); } public override void opCustomIntS_async(AMD_MyClass_opCustomIntS cb, Custom i, Ice.Current current) { cb.ice_response(i, i); } public override void opCustomCVS_async(AMD_MyClass_opCustomCVS cb, Custom i, Ice.Current current) { cb.ice_response(i, i); } public override void opCustomIntSS_async(AMD_MyClass_opCustomIntSS cb, Custom> i, Ice.Current current) { cb.ice_response(i, i); } public override void opCustomCVSS_async(AMD_MyClass_opCustomCVSS cb, Custom> i, Ice.Current current) { cb.ice_response(i, i); } public override void opSerialSmallCSharp_async(AMD_MyClass_opSerialSmallCSharp cb, Serialize.Small i, Ice.Current current) { cb.ice_response(i, i); } public override void opSerialLargeCSharp_async(AMD_MyClass_opSerialLargeCSharp cb, Serialize.Large i, Ice.Current current) { cb.ice_response(i, i); } public override void opSerialStructCSharp_async(AMD_MyClass_opSerialStructCSharp cb, Serialize.Struct i, Ice.Current current) { cb.ice_response(i, i); } }