1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
|
// **********************************************************************
//
// Copyright (c) 2003-2009 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<byte> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKByteS_async(AMD_MyClass_opKByteS cb, LinkedList<byte> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQByteS_async(AMD_MyClass_opQByteS cb, Queue<byte> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSByteS_async(AMD_MyClass_opSByteS cb, Stack<byte> 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<bool> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKBoolS_async(AMD_MyClass_opKBoolS cb, LinkedList<bool> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQBoolS_async(AMD_MyClass_opQBoolS cb, Queue<bool> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSBoolS_async(AMD_MyClass_opSBoolS cb, Stack<bool> 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<short> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKShortS_async(AMD_MyClass_opKShortS cb, LinkedList<short> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQShortS_async(AMD_MyClass_opQShortS cb, Queue<short> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSShortS_async(AMD_MyClass_opSShortS cb, Stack<short> 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<int> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKIntS_async(AMD_MyClass_opKIntS cb, LinkedList<int> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQIntS_async(AMD_MyClass_opQIntS cb, Queue<int> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSIntS_async(AMD_MyClass_opSIntS cb, Stack<int> 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<long> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKLongS_async(AMD_MyClass_opKLongS cb, LinkedList<long> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQLongS_async(AMD_MyClass_opQLongS cb, Queue<long> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSLongS_async(AMD_MyClass_opSLongS cb, Stack<long> 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<float> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKFloatS_async(AMD_MyClass_opKFloatS cb, LinkedList<float> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQFloatS_async(AMD_MyClass_opQFloatS cb, Queue<float> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSFloatS_async(AMD_MyClass_opSFloatS cb, Stack<float> 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<double> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKDoubleS_async(AMD_MyClass_opKDoubleS cb, LinkedList<double> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQDoubleS_async(AMD_MyClass_opQDoubleS cb, Queue<double> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSDoubleS_async(AMD_MyClass_opSDoubleS cb, Stack<double> 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<string> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKStringS_async(AMD_MyClass_opKStringS cb, LinkedList<string> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQStringS_async(AMD_MyClass_opQStringS cb, Queue<string> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSStringS_async(AMD_MyClass_opSStringS cb, Stack<string> 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<Ice.Object> 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<Ice.ObjectPrx> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKObjectPrxS_async(AMD_MyClass_opKObjectPrxS cb, LinkedList<Ice.ObjectPrx> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQObjectPrxS_async(AMD_MyClass_opQObjectPrxS cb, Queue<Ice.ObjectPrx> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSObjectPrxS_async(AMD_MyClass_opSObjectPrxS cb, Stack<Ice.ObjectPrx> 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<S> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKStructS_async(AMD_MyClass_opKStructS cb, LinkedList<S> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQStructS_async(AMD_MyClass_opQStructS cb, Queue<S> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSStructS_async(AMD_MyClass_opSStructS cb, Stack<S> 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 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<CV> 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<CVPrx> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKCVPrxS_async(AMD_MyClass_opKCVPrxS cb, LinkedList<CVPrx> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQCVPrxS_async(AMD_MyClass_opQCVPrxS cb, Queue<CVPrx> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSCVPrxS_async(AMD_MyClass_opSCVPrxS cb, Stack<CVPrx> 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<CR> 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<En> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opKEnS_async(AMD_MyClass_opKEnS cb, LinkedList<En> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opQEnS_async(AMD_MyClass_opQEnS cb, Queue<En> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opSEnS_async(AMD_MyClass_opSEnS cb, Stack<En> 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<int> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opCustomCVS_async(AMD_MyClass_opCustomCVS cb, Custom<CV> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opCustomIntSS_async(AMD_MyClass_opCustomIntSS cb, Custom<Custom<int>> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opCustomCVSS_async(AMD_MyClass_opCustomCVSS cb, Custom<Custom<CV>> 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);
}
}
|