zeroc-ice-x64-mingw 3.6b1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/ICE_LICENSE +54 -0
- data/LICENSE +339 -0
- data/bin/slice2rb +17 -0
- data/ice-x64-mingw.gemspec +41 -0
- data/lib/Glacier2.rb +12 -0
- data/lib/Glacier2/Metrics.rb +99 -0
- data/lib/Glacier2/PermissionsVerifier.rb +168 -0
- data/lib/Glacier2/PermissionsVerifierF.rb +34 -0
- data/lib/Glacier2/Router.rb +141 -0
- data/lib/Glacier2/RouterF.rb +29 -0
- data/lib/Glacier2/SSLInfo.rb +79 -0
- data/lib/Glacier2/Session.rb +470 -0
- data/lib/Ice.rb +659 -0
- data/lib/Ice/BuiltinSequences.rb +64 -0
- data/lib/Ice/Communicator.rb +93 -0
- data/lib/Ice/CommunicatorF.rb +28 -0
- data/lib/Ice/Connection.rb +414 -0
- data/lib/Ice/ConnectionF.rb +36 -0
- data/lib/Ice/Current.rb +152 -0
- data/lib/Ice/Endpoint.rb +265 -0
- data/lib/Ice/EndpointF.rb +52 -0
- data/lib/Ice/EndpointTypes.rb +77 -0
- data/lib/Ice/FacetMap.rb +28 -0
- data/lib/Ice/Identity.rb +70 -0
- data/lib/Ice/ImplicitContext.rb +59 -0
- data/lib/Ice/ImplicitContextF.rb +28 -0
- data/lib/Ice/Instrumentation.rb +425 -0
- data/lib/Ice/InstrumentationF.rb +35 -0
- data/lib/Ice/LocalException.rb +1081 -0
- data/lib/Ice/Locator.rb +314 -0
- data/lib/Ice/LocatorF.rb +34 -0
- data/lib/Ice/Logger.rb +57 -0
- data/lib/Ice/LoggerF.rb +28 -0
- data/lib/Ice/Metrics.rb +696 -0
- data/lib/Ice/ObjectAdapterF.rb +28 -0
- data/lib/Ice/ObjectFactory.rb +53 -0
- data/lib/Ice/ObjectFactoryF.rb +28 -0
- data/lib/Ice/Plugin.rb +87 -0
- data/lib/Ice/PluginF.rb +32 -0
- data/lib/Ice/Process.rb +93 -0
- data/lib/Ice/ProcessF.rb +29 -0
- data/lib/Ice/Properties.rb +65 -0
- data/lib/Ice/PropertiesAdmin.rb +104 -0
- data/lib/Ice/PropertiesF.rb +33 -0
- data/lib/Ice/Router.rb +163 -0
- data/lib/Ice/RouterF.rb +29 -0
- data/lib/Ice/SliceChecksumDict.rb +28 -0
- data/lib/Ice/Version.rb +100 -0
- data/lib/IceBox.rb +10 -0
- data/lib/IceBox/IceBox.rb +272 -0
- data/lib/IceGrid.rb +17 -0
- data/lib/IceGrid/Admin.rb +1076 -0
- data/lib/IceGrid/Descriptor.rb +1505 -0
- data/lib/IceGrid/Exception.rb +401 -0
- data/lib/IceGrid/FileParser.rb +105 -0
- data/lib/IceGrid/Locator.rb +105 -0
- data/lib/IceGrid/Observer.rb +571 -0
- data/lib/IceGrid/Query.rb +168 -0
- data/lib/IceGrid/Registry.rb +120 -0
- data/lib/IceGrid/Session.rb +114 -0
- data/lib/IceGrid/UserAccountMapper.rb +101 -0
- data/lib/IcePatch2.rb +10 -0
- data/lib/IcePatch2/FileInfo.rb +75 -0
- data/lib/IcePatch2/FileServer.rb +141 -0
- data/lib/IceRuby.so +0 -0
- data/lib/IceStorm.rb +11 -0
- data/lib/IceStorm/IceStorm.rb +463 -0
- data/lib/IceStorm/Metrics.rb +155 -0
- data/slice/Freeze/BackgroundSaveEvictor.ice +111 -0
- data/slice/Freeze/CatalogData.ice +49 -0
- data/slice/Freeze/Connection.ice +111 -0
- data/slice/Freeze/ConnectionF.ice +20 -0
- data/slice/Freeze/DB.ice +37 -0
- data/slice/Freeze/Evictor.ice +339 -0
- data/slice/Freeze/EvictorF.ice +22 -0
- data/slice/Freeze/EvictorStorage.ice +72 -0
- data/slice/Freeze/Exception.ice +100 -0
- data/slice/Freeze/Transaction.ice +57 -0
- data/slice/Freeze/TransactionalEvictor.ice +50 -0
- data/slice/Glacier2/Metrics.ice +77 -0
- data/slice/Glacier2/PermissionsVerifier.ice +105 -0
- data/slice/Glacier2/PermissionsVerifierF.ice +21 -0
- data/slice/Glacier2/Router.ice +178 -0
- data/slice/Glacier2/RouterF.ice +20 -0
- data/slice/Glacier2/SSLInfo.ice +50 -0
- data/slice/Glacier2/Session.ice +273 -0
- data/slice/Ice/BuiltinSequences.ice +48 -0
- data/slice/Ice/Communicator.ice +567 -0
- data/slice/Ice/CommunicatorF.ice +20 -0
- data/slice/Ice/Connection.ice +323 -0
- data/slice/Ice/ConnectionF.ice +22 -0
- data/slice/Ice/Current.ice +160 -0
- data/slice/Ice/Endpoint.ice +227 -0
- data/slice/Ice/EndpointF.ice +32 -0
- data/slice/Ice/EndpointTypes.ice +38 -0
- data/slice/Ice/FacetMap.ice +25 -0
- data/slice/Ice/Identity.ice +59 -0
- data/slice/Ice/ImplicitContext.ice +109 -0
- data/slice/Ice/ImplicitContextF.ice +20 -0
- data/slice/Ice/Instrumentation.ice +499 -0
- data/slice/Ice/InstrumentationF.ice +26 -0
- data/slice/Ice/LocalException.ice +1015 -0
- data/slice/Ice/Locator.ice +227 -0
- data/slice/Ice/LocatorF.ice +21 -0
- data/slice/Ice/Logger.ice +86 -0
- data/slice/Ice/LoggerF.ice +20 -0
- data/slice/Ice/Metrics.ice +422 -0
- data/slice/Ice/ObjectAdapter.ice +673 -0
- data/slice/Ice/ObjectAdapterF.ice +20 -0
- data/slice/Ice/ObjectFactory.ice +60 -0
- data/slice/Ice/ObjectFactoryF.ice +20 -0
- data/slice/Ice/Plugin.ice +117 -0
- data/slice/Ice/PluginF.ice +21 -0
- data/slice/Ice/Process.ice +54 -0
- data/slice/Ice/ProcessF.ice +20 -0
- data/slice/Ice/Properties.ice +228 -0
- data/slice/Ice/PropertiesAdmin.ice +75 -0
- data/slice/Ice/PropertiesF.ice +21 -0
- data/slice/Ice/RemoteLogger.ice +232 -0
- data/slice/Ice/Router.ice +83 -0
- data/slice/Ice/RouterF.ice +20 -0
- data/slice/Ice/ServantLocator.ice +117 -0
- data/slice/Ice/ServantLocatorF.ice +20 -0
- data/slice/Ice/SliceChecksumDict.ice +25 -0
- data/slice/Ice/Version.ice +39 -0
- data/slice/IceBox/IceBox.ice +194 -0
- data/slice/IceDiscovery/IceDiscovery.ice +32 -0
- data/slice/IceGrid/Admin.ice +1578 -0
- data/slice/IceGrid/Descriptor.ice +1079 -0
- data/slice/IceGrid/Discovery.ice +73 -0
- data/slice/IceGrid/Exception.ice +383 -0
- data/slice/IceGrid/FileParser.ice +61 -0
- data/slice/IceGrid/Locator.ice +56 -0
- data/slice/IceGrid/Observer.ice +394 -0
- data/slice/IceGrid/PluginFacade.ice +316 -0
- data/slice/IceGrid/Query.ice +130 -0
- data/slice/IceGrid/Registry.ice +138 -0
- data/slice/IceGrid/Session.ice +124 -0
- data/slice/IceGrid/UserAccountMapper.ice +58 -0
- data/slice/IcePatch2/FileInfo.ice +49 -0
- data/slice/IcePatch2/FileServer.ice +129 -0
- data/slice/IceSSL/ConnectionInfo.ice +34 -0
- data/slice/IceSSL/EndpointInfo.ice +41 -0
- data/slice/IceStorm/IceStorm.ice +405 -0
- data/slice/IceStorm/Metrics.ice +71 -0
- metadata +207 -0
@@ -0,0 +1,36 @@
|
|
1
|
+
# **********************************************************************
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
4
|
+
#
|
5
|
+
# This copy of Ice is licensed to you under the terms described in the
|
6
|
+
# ICE_LICENSE file included in this distribution.
|
7
|
+
#
|
8
|
+
# **********************************************************************
|
9
|
+
#
|
10
|
+
# Ice version 3.6b
|
11
|
+
#
|
12
|
+
# <auto-generated>
|
13
|
+
#
|
14
|
+
# Generated from file `ConnectionF.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
|
23
|
+
module Ice
|
24
|
+
|
25
|
+
if not defined?(::Ice::T_ConnectionInfo)
|
26
|
+
T_ConnectionInfo = ::Ice::__declareLocalClass('::Ice::ConnectionInfo')
|
27
|
+
end
|
28
|
+
|
29
|
+
if not defined?(::Ice::T_WSConnectionInfo)
|
30
|
+
T_WSConnectionInfo = ::Ice::__declareLocalClass('::Ice::WSConnectionInfo')
|
31
|
+
end
|
32
|
+
|
33
|
+
if not defined?(::Ice::T_Connection)
|
34
|
+
T_Connection = ::Ice::__declareLocalClass('::Ice::Connection')
|
35
|
+
end
|
36
|
+
end
|
data/lib/Ice/Current.rb
ADDED
@@ -0,0 +1,152 @@
|
|
1
|
+
# **********************************************************************
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
4
|
+
#
|
5
|
+
# This copy of Ice is licensed to you under the terms described in the
|
6
|
+
# ICE_LICENSE file included in this distribution.
|
7
|
+
#
|
8
|
+
# **********************************************************************
|
9
|
+
#
|
10
|
+
# Ice version 3.6b
|
11
|
+
#
|
12
|
+
# <auto-generated>
|
13
|
+
#
|
14
|
+
# Generated from file `Current.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Ice/ObjectAdapterF.rb'
|
23
|
+
require 'Ice/ConnectionF.rb'
|
24
|
+
require 'Ice/Identity.rb'
|
25
|
+
require 'Ice/Version.rb'
|
26
|
+
|
27
|
+
module Ice
|
28
|
+
|
29
|
+
if not defined?(::Ice::T_Context)
|
30
|
+
T_Context = ::Ice::__defineDictionary('::Ice::Context', ::Ice::T_string, ::Ice::T_string)
|
31
|
+
end
|
32
|
+
|
33
|
+
if not defined?(::Ice::OperationMode)
|
34
|
+
class OperationMode
|
35
|
+
include Comparable
|
36
|
+
|
37
|
+
def initialize(name, value)
|
38
|
+
@name = name
|
39
|
+
@value = value
|
40
|
+
end
|
41
|
+
|
42
|
+
def OperationMode.from_int(val)
|
43
|
+
@@_enumerators[val]
|
44
|
+
end
|
45
|
+
|
46
|
+
def to_s
|
47
|
+
@name
|
48
|
+
end
|
49
|
+
|
50
|
+
def to_i
|
51
|
+
@value
|
52
|
+
end
|
53
|
+
|
54
|
+
def <=>(other)
|
55
|
+
other.is_a?(OperationMode) or raise ArgumentError, "value must be a OperationMode"
|
56
|
+
@value <=> other.to_i
|
57
|
+
end
|
58
|
+
|
59
|
+
def hash
|
60
|
+
@value.hash
|
61
|
+
end
|
62
|
+
|
63
|
+
def inspect
|
64
|
+
@name + "(#{@value})"
|
65
|
+
end
|
66
|
+
|
67
|
+
def OperationMode.each(&block)
|
68
|
+
@@_enumerators.each_value(&block)
|
69
|
+
end
|
70
|
+
|
71
|
+
Normal = OperationMode.new("Normal", 0)
|
72
|
+
Nonmutating = OperationMode.new("Nonmutating", 1)
|
73
|
+
Idempotent = OperationMode.new("Idempotent", 2)
|
74
|
+
|
75
|
+
@@_enumerators = {0=>Normal, 1=>Nonmutating, 2=>Idempotent}
|
76
|
+
|
77
|
+
def OperationMode._enumerators
|
78
|
+
@@_enumerators
|
79
|
+
end
|
80
|
+
|
81
|
+
private_class_method :new
|
82
|
+
end
|
83
|
+
|
84
|
+
T_OperationMode = ::Ice::__defineEnum('::Ice::OperationMode', OperationMode, OperationMode::_enumerators)
|
85
|
+
end
|
86
|
+
|
87
|
+
if not defined?(::Ice::Current)
|
88
|
+
class Current
|
89
|
+
def initialize(adapter=nil, con=nil, id=::Ice::Identity.new, facet='', operation='', mode=::Ice::OperationMode::Normal, ctx=nil, requestId=0, encoding=::Ice::EncodingVersion.new)
|
90
|
+
@adapter = adapter
|
91
|
+
@con = con
|
92
|
+
@id = id
|
93
|
+
@facet = facet
|
94
|
+
@operation = operation
|
95
|
+
@mode = mode
|
96
|
+
@ctx = ctx
|
97
|
+
@requestId = requestId
|
98
|
+
@encoding = encoding
|
99
|
+
end
|
100
|
+
|
101
|
+
def hash
|
102
|
+
_h = 0
|
103
|
+
_h = 5 * _h + @adapter.hash
|
104
|
+
_h = 5 * _h + @con.hash
|
105
|
+
_h = 5 * _h + @id.hash
|
106
|
+
_h = 5 * _h + @facet.hash
|
107
|
+
_h = 5 * _h + @operation.hash
|
108
|
+
_h = 5 * _h + @mode.hash
|
109
|
+
_h = 5 * _h + @ctx.hash
|
110
|
+
_h = 5 * _h + @requestId.hash
|
111
|
+
_h = 5 * _h + @encoding.hash
|
112
|
+
_h % 0x7fffffff
|
113
|
+
end
|
114
|
+
|
115
|
+
def ==(other)
|
116
|
+
return false if
|
117
|
+
@adapter != other.adapter or
|
118
|
+
@con != other.con or
|
119
|
+
@id != other.id or
|
120
|
+
@facet != other.facet or
|
121
|
+
@operation != other.operation or
|
122
|
+
@mode != other.mode or
|
123
|
+
@ctx != other.ctx or
|
124
|
+
@requestId != other.requestId or
|
125
|
+
@encoding != other.encoding
|
126
|
+
true
|
127
|
+
end
|
128
|
+
|
129
|
+
def eql?(other)
|
130
|
+
return other.class == self.class && other == self
|
131
|
+
end
|
132
|
+
|
133
|
+
def inspect
|
134
|
+
::Ice::__stringify(self, T_Current)
|
135
|
+
end
|
136
|
+
|
137
|
+
attr_accessor :adapter, :con, :id, :facet, :operation, :mode, :ctx, :requestId, :encoding
|
138
|
+
end
|
139
|
+
|
140
|
+
T_Current = ::Ice::__defineStruct('::Ice::Current', Current, [
|
141
|
+
["adapter", ::Ice::T_ObjectAdapter],
|
142
|
+
["con", ::Ice::T_Connection],
|
143
|
+
["id", ::Ice::T_Identity],
|
144
|
+
["facet", ::Ice::T_string],
|
145
|
+
["operation", ::Ice::T_string],
|
146
|
+
["mode", ::Ice::T_OperationMode],
|
147
|
+
["ctx", ::Ice::T_Context],
|
148
|
+
["requestId", ::Ice::T_int],
|
149
|
+
["encoding", ::Ice::T_EncodingVersion]
|
150
|
+
])
|
151
|
+
end
|
152
|
+
end
|
data/lib/Ice/Endpoint.rb
ADDED
@@ -0,0 +1,265 @@
|
|
1
|
+
# **********************************************************************
|
2
|
+
#
|
3
|
+
# Copyright (c) 2003-2014 ZeroC, Inc. All rights reserved.
|
4
|
+
#
|
5
|
+
# This copy of Ice is licensed to you under the terms described in the
|
6
|
+
# ICE_LICENSE file included in this distribution.
|
7
|
+
#
|
8
|
+
# **********************************************************************
|
9
|
+
#
|
10
|
+
# Ice version 3.6b
|
11
|
+
#
|
12
|
+
# <auto-generated>
|
13
|
+
#
|
14
|
+
# Generated from file `Endpoint.ice'
|
15
|
+
#
|
16
|
+
# Warning: do not edit this file.
|
17
|
+
#
|
18
|
+
# </auto-generated>
|
19
|
+
#
|
20
|
+
|
21
|
+
require 'Ice'
|
22
|
+
require 'Ice/Version.rb'
|
23
|
+
require 'Ice/BuiltinSequences.rb'
|
24
|
+
require 'Ice/EndpointF.rb'
|
25
|
+
|
26
|
+
module Ice
|
27
|
+
|
28
|
+
TCPEndpointType = 1
|
29
|
+
|
30
|
+
UDPEndpointType = 3
|
31
|
+
|
32
|
+
WSEndpointType = 4
|
33
|
+
|
34
|
+
WSSEndpointType = 5
|
35
|
+
|
36
|
+
if not defined?(::Ice::EndpointInfo_mixin)
|
37
|
+
module EndpointInfo_mixin
|
38
|
+
|
39
|
+
#
|
40
|
+
# Operation signatures.
|
41
|
+
#
|
42
|
+
# def type()
|
43
|
+
# def datagram()
|
44
|
+
# def secure()
|
45
|
+
|
46
|
+
def inspect
|
47
|
+
::Ice::__stringify(self, T_EndpointInfo)
|
48
|
+
end
|
49
|
+
|
50
|
+
attr_accessor :timeout, :compress
|
51
|
+
end
|
52
|
+
class EndpointInfo
|
53
|
+
include EndpointInfo_mixin
|
54
|
+
|
55
|
+
def EndpointInfo.ice_staticId()
|
56
|
+
'::Ice::EndpointInfo'
|
57
|
+
end
|
58
|
+
|
59
|
+
def initialize(timeout=0, compress=false)
|
60
|
+
@timeout = timeout
|
61
|
+
@compress = compress
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
if not defined?(::Ice::T_EndpointInfo)
|
66
|
+
T_EndpointInfo = ::Ice::__declareLocalClass('::Ice::EndpointInfo')
|
67
|
+
end
|
68
|
+
|
69
|
+
T_EndpointInfo.defineClass(EndpointInfo, -1, true, false, nil, [], [
|
70
|
+
['timeout', ::Ice::T_int, false, 0],
|
71
|
+
['compress', ::Ice::T_bool, false, 0]
|
72
|
+
])
|
73
|
+
EndpointInfo_mixin::ICE_TYPE = T_EndpointInfo
|
74
|
+
end
|
75
|
+
|
76
|
+
if not defined?(::Ice::Endpoint_mixin)
|
77
|
+
module Endpoint_mixin
|
78
|
+
|
79
|
+
#
|
80
|
+
# Operation signatures.
|
81
|
+
#
|
82
|
+
# def toString()
|
83
|
+
# def getInfo()
|
84
|
+
|
85
|
+
def inspect
|
86
|
+
::Ice::__stringify(self, T_Endpoint)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
class Endpoint
|
90
|
+
include Endpoint_mixin
|
91
|
+
|
92
|
+
def Endpoint.ice_staticId()
|
93
|
+
'::Ice::Endpoint'
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
if not defined?(::Ice::T_Endpoint)
|
98
|
+
T_Endpoint = ::Ice::__declareLocalClass('::Ice::Endpoint')
|
99
|
+
end
|
100
|
+
|
101
|
+
T_Endpoint.defineClass(Endpoint, -1, true, false, nil, [], [])
|
102
|
+
Endpoint_mixin::ICE_TYPE = T_Endpoint
|
103
|
+
end
|
104
|
+
|
105
|
+
if not defined?(::Ice::IPEndpointInfo_mixin)
|
106
|
+
module IPEndpointInfo_mixin
|
107
|
+
|
108
|
+
def inspect
|
109
|
+
::Ice::__stringify(self, T_IPEndpointInfo)
|
110
|
+
end
|
111
|
+
|
112
|
+
attr_accessor :host, :port, :sourceAddress
|
113
|
+
end
|
114
|
+
class IPEndpointInfo
|
115
|
+
include IPEndpointInfo_mixin
|
116
|
+
|
117
|
+
def IPEndpointInfo.ice_staticId()
|
118
|
+
'::Ice::IPEndpointInfo'
|
119
|
+
end
|
120
|
+
|
121
|
+
def initialize(timeout=0, compress=false, host='', port=0, sourceAddress='')
|
122
|
+
super(timeout, compress)
|
123
|
+
@host = host
|
124
|
+
@port = port
|
125
|
+
@sourceAddress = sourceAddress
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
if not defined?(::Ice::T_IPEndpointInfo)
|
130
|
+
T_IPEndpointInfo = ::Ice::__declareLocalClass('::Ice::IPEndpointInfo')
|
131
|
+
end
|
132
|
+
|
133
|
+
T_IPEndpointInfo.defineClass(IPEndpointInfo, -1, true, false, nil, [], [
|
134
|
+
['host', ::Ice::T_string, false, 0],
|
135
|
+
['port', ::Ice::T_int, false, 0],
|
136
|
+
['sourceAddress', ::Ice::T_string, false, 0]
|
137
|
+
])
|
138
|
+
IPEndpointInfo_mixin::ICE_TYPE = T_IPEndpointInfo
|
139
|
+
end
|
140
|
+
|
141
|
+
if not defined?(::Ice::TCPEndpointInfo_mixin)
|
142
|
+
module TCPEndpointInfo_mixin
|
143
|
+
|
144
|
+
def inspect
|
145
|
+
::Ice::__stringify(self, T_TCPEndpointInfo)
|
146
|
+
end
|
147
|
+
end
|
148
|
+
class TCPEndpointInfo
|
149
|
+
include TCPEndpointInfo_mixin
|
150
|
+
|
151
|
+
def TCPEndpointInfo.ice_staticId()
|
152
|
+
'::Ice::TCPEndpointInfo'
|
153
|
+
end
|
154
|
+
|
155
|
+
def initialize(timeout=0, compress=false, host='', port=0, sourceAddress='')
|
156
|
+
super(timeout, compress, host, port, sourceAddress)
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
if not defined?(::Ice::T_TCPEndpointInfo)
|
161
|
+
T_TCPEndpointInfo = ::Ice::__declareLocalClass('::Ice::TCPEndpointInfo')
|
162
|
+
end
|
163
|
+
|
164
|
+
T_TCPEndpointInfo.defineClass(TCPEndpointInfo, -1, true, false, nil, [], [])
|
165
|
+
TCPEndpointInfo_mixin::ICE_TYPE = T_TCPEndpointInfo
|
166
|
+
end
|
167
|
+
|
168
|
+
if not defined?(::Ice::UDPEndpointInfo_mixin)
|
169
|
+
module UDPEndpointInfo_mixin
|
170
|
+
|
171
|
+
def inspect
|
172
|
+
::Ice::__stringify(self, T_UDPEndpointInfo)
|
173
|
+
end
|
174
|
+
|
175
|
+
attr_accessor :mcastInterface, :mcastTtl
|
176
|
+
end
|
177
|
+
class UDPEndpointInfo
|
178
|
+
include UDPEndpointInfo_mixin
|
179
|
+
|
180
|
+
def UDPEndpointInfo.ice_staticId()
|
181
|
+
'::Ice::UDPEndpointInfo'
|
182
|
+
end
|
183
|
+
|
184
|
+
def initialize(timeout=0, compress=false, host='', port=0, sourceAddress='', mcastInterface='', mcastTtl=0)
|
185
|
+
super(timeout, compress, host, port, sourceAddress)
|
186
|
+
@mcastInterface = mcastInterface
|
187
|
+
@mcastTtl = mcastTtl
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
if not defined?(::Ice::T_UDPEndpointInfo)
|
192
|
+
T_UDPEndpointInfo = ::Ice::__declareLocalClass('::Ice::UDPEndpointInfo')
|
193
|
+
end
|
194
|
+
|
195
|
+
T_UDPEndpointInfo.defineClass(UDPEndpointInfo, -1, true, false, nil, [], [
|
196
|
+
['mcastInterface', ::Ice::T_string, false, 0],
|
197
|
+
['mcastTtl', ::Ice::T_int, false, 0]
|
198
|
+
])
|
199
|
+
UDPEndpointInfo_mixin::ICE_TYPE = T_UDPEndpointInfo
|
200
|
+
end
|
201
|
+
|
202
|
+
if not defined?(::Ice::WSEndpointInfo_mixin)
|
203
|
+
module WSEndpointInfo_mixin
|
204
|
+
|
205
|
+
def inspect
|
206
|
+
::Ice::__stringify(self, T_WSEndpointInfo)
|
207
|
+
end
|
208
|
+
|
209
|
+
attr_accessor :resource
|
210
|
+
end
|
211
|
+
class WSEndpointInfo
|
212
|
+
include WSEndpointInfo_mixin
|
213
|
+
|
214
|
+
def WSEndpointInfo.ice_staticId()
|
215
|
+
'::Ice::WSEndpointInfo'
|
216
|
+
end
|
217
|
+
|
218
|
+
def initialize(timeout=0, compress=false, host='', port=0, sourceAddress='', resource='')
|
219
|
+
super(timeout, compress, host, port, sourceAddress)
|
220
|
+
@resource = resource
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
if not defined?(::Ice::T_WSEndpointInfo)
|
225
|
+
T_WSEndpointInfo = ::Ice::__declareLocalClass('::Ice::WSEndpointInfo')
|
226
|
+
end
|
227
|
+
|
228
|
+
T_WSEndpointInfo.defineClass(WSEndpointInfo, -1, true, false, nil, [], [['resource', ::Ice::T_string, false, 0]])
|
229
|
+
WSEndpointInfo_mixin::ICE_TYPE = T_WSEndpointInfo
|
230
|
+
end
|
231
|
+
|
232
|
+
if not defined?(::Ice::OpaqueEndpointInfo_mixin)
|
233
|
+
module OpaqueEndpointInfo_mixin
|
234
|
+
|
235
|
+
def inspect
|
236
|
+
::Ice::__stringify(self, T_OpaqueEndpointInfo)
|
237
|
+
end
|
238
|
+
|
239
|
+
attr_accessor :rawEncoding, :rawBytes
|
240
|
+
end
|
241
|
+
class OpaqueEndpointInfo
|
242
|
+
include OpaqueEndpointInfo_mixin
|
243
|
+
|
244
|
+
def OpaqueEndpointInfo.ice_staticId()
|
245
|
+
'::Ice::OpaqueEndpointInfo'
|
246
|
+
end
|
247
|
+
|
248
|
+
def initialize(timeout=0, compress=false, rawEncoding=::Ice::EncodingVersion.new, rawBytes=nil)
|
249
|
+
super(timeout, compress)
|
250
|
+
@rawEncoding = rawEncoding
|
251
|
+
@rawBytes = rawBytes
|
252
|
+
end
|
253
|
+
end
|
254
|
+
|
255
|
+
if not defined?(::Ice::T_OpaqueEndpointInfo)
|
256
|
+
T_OpaqueEndpointInfo = ::Ice::__declareLocalClass('::Ice::OpaqueEndpointInfo')
|
257
|
+
end
|
258
|
+
|
259
|
+
T_OpaqueEndpointInfo.defineClass(OpaqueEndpointInfo, -1, true, false, nil, [], [
|
260
|
+
['rawEncoding', ::Ice::T_EncodingVersion, false, 0],
|
261
|
+
['rawBytes', ::Ice::T_ByteSeq, false, 0]
|
262
|
+
])
|
263
|
+
OpaqueEndpointInfo_mixin::ICE_TYPE = T_OpaqueEndpointInfo
|
264
|
+
end
|
265
|
+
end
|