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
|
// **********************************************************************
//
// 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 opNV_async(AMD_MyClass_opNV cb, Dictionary<int, int> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNR_async(AMD_MyClass_opNR cb, Dictionary<string, string> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDV_async(AMD_MyClass_opNDV cb, Dictionary<string, Dictionary<int, int>> i,
Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDR_async(AMD_MyClass_opNDR cb, Dictionary<string, Dictionary<string, string>> i,
Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opOV_async(AMD_MyClass_opOV cb, OV i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opOR_async(AMD_MyClass_opOR cb, OR i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODV_async(AMD_MyClass_opODV cb, ODV i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODR_async(AMD_MyClass_opODR cb, ODR i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNODV_async(AMD_MyClass_opNODV cb, Dictionary<string, ODV> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNODR_async(AMD_MyClass_opNODR cb, Dictionary<string, ODR> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opONDV_async(AMD_MyClass_opONDV cb, ONDV i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opONDR_async(AMD_MyClass_opONDR cb, ONDR i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDAIS_async(AMD_MyClass_opNDAIS cb, Dictionary<string, int[]> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDCIS_async(AMD_MyClass_opNDCIS cb, Dictionary<string, CIS> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDGIS_async(AMD_MyClass_opNDGIS cb, Dictionary<string, List<int>> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDASS_async(AMD_MyClass_opNDASS cb, Dictionary<string, string[]> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDCSS_async(AMD_MyClass_opNDCSS cb, Dictionary<string, CSS> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opNDGSS_async(AMD_MyClass_opNDGSS cb, Dictionary<string, List<string>> i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODAIS_async(AMD_MyClass_opODAIS cb, ODAIS i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODCIS_async(AMD_MyClass_opODCIS cb, ODCIS i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODGIS_async(AMD_MyClass_opODGIS cb, ODGIS i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODASS_async(AMD_MyClass_opODASS cb, ODASS i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODCSS_async(AMD_MyClass_opODCSS cb, ODCSS i, Ice.Current current)
{
cb.ice_response(i, i);
}
public override void opODGSS_async(AMD_MyClass_opODGSS cb, ODGSS i, Ice.Current current)
{
cb.ice_response(i, i);
}
}
|