zeroc-ice 3.7.2 → 3.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/ext/Config.h +4 -0
- data/ext/Operation.cpp +5 -5
- data/ext/Properties.cpp +1 -1
- data/ext/Proxy.cpp +16 -2
- data/ext/Types.cpp +45 -40
- data/ext/Util.cpp +1 -1
- data/ext/Util.h +10 -8
- data/ext/ice/cpp/include/Ice/Config.h +4 -0
- data/ext/ice/cpp/include/Ice/FactoryTableInit.h +1 -1
- data/ext/ice/cpp/include/Ice/IconvStringConverter.h +4 -3
- data/ext/ice/cpp/include/Ice/InputStream.h +4 -4
- data/ext/ice/cpp/include/Ice/Optional.h +11 -0
- data/ext/ice/cpp/include/Ice/OutgoingAsync.h +1 -1
- data/ext/ice/cpp/include/Ice/OutputStream.h +5 -5
- data/ext/ice/cpp/include/Ice/Proxy.h +17 -5
- data/ext/ice/cpp/include/Ice/StreamHelpers.h +1 -1
- data/ext/ice/cpp/include/Ice/Value.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Atomic.h +1 -1
- data/ext/ice/cpp/include/IceUtil/Config.h +16 -6
- data/ext/ice/cpp/include/IceUtil/ConsoleUtil.h +4 -4
- data/ext/ice/cpp/include/IceUtil/Optional.h +8 -0
- data/ext/ice/cpp/include/IceUtil/OutputUtil.h +17 -14
- data/ext/ice/cpp/include/IceUtil/Random.h +1 -1
- data/ext/ice/cpp/include/IceUtil/ResourceConfig.h +2 -2
- data/ext/ice/cpp/include/IceUtil/ScannerConfig.h +6 -0
- data/ext/ice/cpp/include/IceUtil/StringConverter.h +1 -1
- data/ext/ice/cpp/include/generated/Ice/BuiltinSequences.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Communicator.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/CommunicatorF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Connection.h +33 -36
- data/ext/ice/cpp/include/generated/Ice/ConnectionF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Current.h +20 -21
- data/ext/ice/cpp/include/generated/Ice/Endpoint.h +24 -24
- data/ext/ice/cpp/include/generated/Ice/EndpointF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/EndpointTypes.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/FacetMap.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Identity.h +4 -5
- data/ext/ice/cpp/include/generated/Ice/ImplicitContext.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ImplicitContextF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Instrumentation.h +15 -15
- data/ext/ice/cpp/include/generated/Ice/InstrumentationF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/LocalException.h +27 -93
- data/ext/ice/cpp/include/generated/Ice/Locator.h +27 -32
- data/ext/ice/cpp/include/generated/Ice/LocatorF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Logger.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/LoggerF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Metrics.h +75 -79
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapter.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ObjectAdapterF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ObjectFactory.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Plugin.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/PluginF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Process.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ProcessF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Properties.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/PropertiesAdmin.h +9 -9
- data/ext/ice/cpp/include/generated/Ice/PropertiesF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/RemoteLogger.h +9 -11
- data/ext/ice/cpp/include/generated/Ice/Router.h +22 -22
- data/ext/ice/cpp/include/generated/Ice/RouterF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ServantLocator.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ServantLocatorF.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/SliceChecksumDict.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/ValueFactory.h +3 -3
- data/ext/ice/cpp/include/generated/Ice/Version.h +15 -17
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfo.h +3 -3
- data/ext/ice/cpp/include/generated/IceSSL/ConnectionInfoF.h +3 -3
- data/ext/ice/cpp/include/generated/IceSSL/EndpointInfo.h +3 -3
- data/ext/ice/cpp/src/Ice/ArgVector.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Base64.cpp +11 -12
- data/ext/ice/cpp/src/Ice/BatchRequestQueue.cpp +1 -1
- data/ext/ice/cpp/src/Ice/Buffer.cpp +2 -2
- data/ext/ice/cpp/src/Ice/BuiltinSequences.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Communicator.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CommunicatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/CommunicatorI.cpp +19 -0
- data/ext/ice/cpp/src/Ice/CommunicatorI.h +5 -0
- data/ext/ice/cpp/src/Ice/Connection.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ConnectionF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ConnectionI.cpp +31 -16
- data/ext/ice/cpp/src/Ice/Current.cpp +3 -3
- data/ext/ice/cpp/src/Ice/DispatchInterceptor.cpp +13 -0
- data/ext/ice/cpp/src/Ice/DynamicLibrary.cpp +6 -5
- data/ext/ice/cpp/src/Ice/Endpoint.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EndpointF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/EndpointTypes.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Exception.cpp +5 -5
- data/ext/ice/cpp/src/Ice/FacetMap.cpp +3 -3
- data/ext/ice/cpp/src/Ice/HashUtil.h +1 -1
- data/ext/ice/cpp/src/Ice/IPEndpointI.cpp +12 -1
- data/ext/ice/cpp/src/Ice/Identity.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContext.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ImplicitContextF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Incoming.cpp +2 -0
- data/ext/ice/cpp/src/Ice/Initialize.cpp +4 -3
- data/ext/ice/cpp/src/Ice/InputStream.cpp +19 -19
- data/ext/ice/cpp/src/Ice/Instance.cpp +28 -8
- data/ext/ice/cpp/src/Ice/Instrumentation.cpp +3 -3
- data/ext/ice/cpp/src/Ice/InstrumentationF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LocalException.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Locator.cpp +7 -7
- data/ext/ice/cpp/src/Ice/LocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Logger.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LoggerAdminI.cpp +1 -7
- data/ext/ice/cpp/src/Ice/LoggerF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/LoggerI.cpp +6 -0
- data/ext/ice/cpp/src/Ice/Metrics.cpp +5 -5
- data/ext/ice/cpp/src/Ice/Network.cpp +23 -22
- data/ext/ice/cpp/src/Ice/Network.h +1 -1
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.cpp +57 -0
- data/ext/ice/cpp/src/Ice/OSLogLoggerI.h +40 -0
- data/ext/ice/cpp/src/Ice/Object.cpp +9 -7
- data/ext/ice/cpp/src/Ice/ObjectAdapter.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ObjectAdapterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.cpp +13 -1
- data/ext/ice/cpp/src/Ice/ObjectAdapterI.h +4 -0
- data/ext/ice/cpp/src/Ice/ObjectFactory.cpp +3 -3
- data/ext/ice/cpp/src/Ice/OutgoingAsync.cpp +1 -1
- data/ext/ice/cpp/src/Ice/OutputStream.cpp +24 -24
- data/ext/ice/cpp/src/Ice/Plugin.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PluginF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Process.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ProcessF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Properties.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PropertiesAdmin.cpp +4 -4
- data/ext/ice/cpp/src/Ice/PropertiesF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/PropertyNames.cpp +2 -1
- data/ext/ice/cpp/src/Ice/PropertyNames.h +1 -1
- data/ext/ice/cpp/src/Ice/Proxy.cpp +6 -0
- data/ext/ice/cpp/src/Ice/ProxyFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/ReferenceFactory.cpp +1 -1
- data/ext/ice/cpp/src/Ice/RegisterPluginsInit.cpp +3 -2
- data/ext/ice/cpp/src/Ice/RemoteLogger.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Router.cpp +6 -6
- data/ext/ice/cpp/src/Ice/RouterF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/SHA1.cpp +2 -2
- data/ext/ice/cpp/src/Ice/Selector.cpp +18 -13
- data/ext/ice/cpp/src/Ice/ServantLocator.cpp +3 -3
- data/ext/ice/cpp/src/Ice/ServantLocatorF.cpp +3 -3
- data/ext/ice/cpp/src/Ice/SliceChecksumDict.cpp +3 -3
- data/ext/ice/cpp/src/Ice/StreamSocket.cpp +6 -6
- data/ext/ice/cpp/src/Ice/TcpAcceptor.cpp +6 -0
- data/ext/ice/cpp/src/Ice/TcpConnector.cpp +5 -0
- data/ext/ice/cpp/src/Ice/TcpEndpointI.cpp +5 -0
- data/ext/ice/cpp/src/Ice/TcpTransceiver.cpp +5 -0
- data/ext/ice/cpp/src/Ice/ThreadPool.cpp +63 -0
- data/ext/ice/cpp/src/Ice/ThreadPool.h +10 -2
- data/ext/ice/cpp/src/Ice/Timer.cpp +10 -0
- data/ext/ice/cpp/src/Ice/UdpEndpointI.cpp +11 -1
- data/ext/ice/cpp/src/Ice/UdpTransceiver.cpp +10 -2
- data/ext/ice/cpp/src/Ice/ValueFactory.cpp +3 -3
- data/ext/ice/cpp/src/Ice/Version.cpp +3 -3
- data/ext/ice/cpp/src/Ice/WSTransceiver.cpp +16 -15
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.cpp +3 -3
- data/ext/ice/cpp/src/IceDiscovery/IceDiscovery.h +3 -3
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.cpp +3 -3
- data/ext/ice/cpp/src/IceLocatorDiscovery/IceLocatorDiscovery.h +3 -3
- data/ext/ice/cpp/src/IceLocatorDiscovery/PluginI.cpp +37 -8
- data/ext/ice/cpp/src/IceSSL/CertificateI.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/ConnectionInfo.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/ConnectionInfoF.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/EndpointInfo.cpp +3 -3
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.cpp +4 -16
- data/ext/ice/cpp/src/IceSSL/OpenSSLEngine.h +0 -1
- data/ext/ice/cpp/src/IceSSL/OpenSSLTransceiverI.cpp +40 -3
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.cpp +0 -7
- data/ext/ice/cpp/src/IceSSL/SChannelEngine.h +0 -2
- data/ext/ice/cpp/src/IceSSL/SChannelTransceiverI.cpp +18 -6
- data/ext/ice/cpp/src/IceSSL/SSLEngine.cpp +19 -7
- data/ext/ice/cpp/src/IceSSL/SSLEngine.h +2 -0
- data/ext/ice/cpp/src/IceSSL/SecureTransportCertificateI.cpp +32 -21
- data/ext/ice/cpp/src/IceSSL/SecureTransportTransceiverI.cpp +21 -6
- data/ext/ice/cpp/src/IceSSL/SecureTransportUtil.cpp +19 -16
- data/ext/ice/cpp/src/IceSSL/Util.cpp +11 -5
- data/ext/ice/cpp/src/IceUtil/FileUtil.cpp +1 -1
- data/ext/ice/cpp/src/IceUtil/Options.cpp +3 -3
- data/ext/ice/cpp/src/IceUtil/OutputUtil.cpp +40 -10
- data/ext/ice/cpp/src/IceUtil/Random.cpp +2 -2
- data/ext/ice/cpp/src/IceUtil/StringConverter.cpp +5 -5
- data/ext/ice/cpp/src/IceUtil/StringUtil.cpp +3 -3
- data/ext/ice/cpp/src/IceUtil/Time.cpp +3 -3
- data/ext/ice/cpp/src/IceUtil/UUID.cpp +5 -5
- data/ext/ice/cpp/src/IceUtil/UtilException.cpp +4 -4
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.cpp +13 -9
- data/ext/ice/cpp/src/Slice/CPlusPlusUtil.h +1 -1
- data/ext/ice/cpp/src/Slice/Grammar.cpp +8 -0
- data/ext/ice/cpp/src/Slice/JavaUtil.cpp +1 -2
- data/ext/ice/cpp/src/Slice/MD5I.cpp +8 -0
- data/ext/ice/cpp/src/Slice/Parser.cpp +60 -112
- data/ext/ice/cpp/src/Slice/Parser.h +27 -1
- data/ext/ice/cpp/src/Slice/Preprocessor.cpp +2 -1
- data/ext/ice/cpp/src/Slice/PythonUtil.cpp +10 -10
- data/ext/ice/cpp/src/Slice/RubyUtil.cpp +1 -1
- data/ext/ice/cpp/src/Slice/Scanner.cpp +8 -0
- data/ext/ice/cpp/src/Slice/StringLiteralUtil.cpp +11 -6
- data/ext/ice/mcpp/Makefile +2 -5
- data/ice.gemspec +1 -1
- data/lib/Glacier2/Metrics.rb +1 -1
- data/lib/Glacier2/PermissionsVerifier.rb +1 -1
- data/lib/Glacier2/PermissionsVerifierF.rb +1 -1
- data/lib/Glacier2/Router.rb +1 -1
- data/lib/Glacier2/RouterF.rb +1 -1
- data/lib/Glacier2/SSLInfo.rb +1 -1
- data/lib/Glacier2/Session.rb +1 -1
- data/lib/Ice/BuiltinSequences.rb +1 -1
- data/lib/Ice/Communicator.rb +1 -1
- data/lib/Ice/CommunicatorF.rb +1 -1
- data/lib/Ice/Connection.rb +1 -1
- data/lib/Ice/ConnectionF.rb +1 -1
- data/lib/Ice/Current.rb +1 -1
- data/lib/Ice/Endpoint.rb +1 -1
- data/lib/Ice/EndpointF.rb +1 -1
- data/lib/Ice/EndpointTypes.rb +1 -1
- data/lib/Ice/FacetMap.rb +1 -1
- data/lib/Ice/Identity.rb +1 -1
- data/lib/Ice/ImplicitContext.rb +1 -1
- data/lib/Ice/ImplicitContextF.rb +1 -1
- data/lib/Ice/Instrumentation.rb +1 -1
- data/lib/Ice/InstrumentationF.rb +1 -1
- data/lib/Ice/LocalException.rb +1 -1
- data/lib/Ice/Locator.rb +1 -1
- data/lib/Ice/LocatorF.rb +1 -1
- data/lib/Ice/Logger.rb +1 -1
- data/lib/Ice/LoggerF.rb +1 -1
- data/lib/Ice/Metrics.rb +1 -1
- data/lib/Ice/ObjectAdapter.rb +1 -1
- data/lib/Ice/ObjectAdapterF.rb +1 -1
- data/lib/Ice/ObjectFactory.rb +1 -1
- data/lib/Ice/Plugin.rb +1 -1
- data/lib/Ice/PluginF.rb +1 -1
- data/lib/Ice/Process.rb +1 -1
- data/lib/Ice/ProcessF.rb +1 -1
- data/lib/Ice/Properties.rb +1 -1
- data/lib/Ice/PropertiesAdmin.rb +1 -1
- data/lib/Ice/PropertiesF.rb +1 -1
- data/lib/Ice/RemoteLogger.rb +1 -1
- data/lib/Ice/Router.rb +1 -1
- data/lib/Ice/RouterF.rb +1 -1
- data/lib/Ice/ServantLocator.rb +1 -1
- data/lib/Ice/ServantLocatorF.rb +1 -1
- data/lib/Ice/SliceChecksumDict.rb +1 -1
- data/lib/Ice/ValueFactory.rb +1 -1
- data/lib/Ice/Version.rb +1 -1
- data/lib/IceBox/IceBox.rb +1 -1
- data/lib/IceGrid/Admin.rb +1 -1
- data/lib/IceGrid/Descriptor.rb +1 -1
- data/lib/IceGrid/Exception.rb +1 -1
- data/lib/IceGrid/FileParser.rb +1 -1
- data/lib/IceGrid/PluginFacade.rb +1 -1
- data/lib/IceGrid/Registry.rb +1 -1
- data/lib/IceGrid/Session.rb +1 -1
- data/lib/IceGrid/UserAccountMapper.rb +1 -1
- data/lib/IcePatch2/FileInfo.rb +1 -1
- data/lib/IcePatch2/FileServer.rb +1 -1
- data/lib/IceStorm/IceStorm.rb +1 -1
- data/lib/IceStorm/Metrics.rb +1 -1
- data/slice/Glacier2/Metrics.ice +1 -1
- data/slice/Ice/Communicator.ice +57 -25
- data/slice/Ice/Connection.ice +14 -14
- data/slice/Ice/Current.ice +1 -1
- data/slice/Ice/Endpoint.ice +6 -6
- data/slice/Ice/EndpointF.ice +1 -1
- data/slice/Ice/FacetMap.ice +1 -1
- data/slice/Ice/ImplicitContext.ice +6 -6
- data/slice/Ice/Instrumentation.ice +6 -6
- data/slice/Ice/Logger.ice +6 -6
- data/slice/Ice/Metrics.ice +12 -9
- data/slice/Ice/ObjectAdapter.ice +43 -31
- data/slice/Ice/ObjectFactory.ice +1 -1
- data/slice/Ice/Plugin.ice +2 -2
- data/slice/Ice/Properties.ice +10 -10
- data/slice/Ice/ServantLocator.ice +4 -2
- data/slice/Ice/ValueFactory.ice +3 -3
- data/slice/IceBT/EndpointInfo.ice +1 -1
- data/slice/IceGrid/PluginFacade.ice +4 -4
- data/slice/IceIAP/ConnectionInfo.ice +1 -1
- data/slice/IceIAP/EndpointInfo.ice +1 -1
- data/slice/IceSSL/ConnectionInfo.ice +3 -2
- data/slice/IceSSL/ConnectionInfoF.ice +1 -1
- data/slice/IceSSL/EndpointInfo.ice +1 -1
- data/slice/IceStorm/Metrics.ice +1 -1
- metadata +5 -3
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
# if ICE_INT_VERSION / 100 != 307
|
|
46
46
|
# error Ice version mismatch!
|
|
47
47
|
# endif
|
|
48
|
-
# if ICE_INT_VERSION % 100
|
|
48
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
49
49
|
# error Beta header file detected
|
|
50
50
|
# endif
|
|
51
|
-
# if ICE_INT_VERSION % 100 <
|
|
51
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
52
52
|
# error Ice patch level mismatch!
|
|
53
53
|
# endif
|
|
54
54
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -34,10 +34,10 @@
|
|
|
34
34
|
# if ICE_INT_VERSION / 100 != 307
|
|
35
35
|
# error Ice version mismatch!
|
|
36
36
|
# endif
|
|
37
|
-
# if ICE_INT_VERSION % 100
|
|
37
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
38
38
|
# error Beta header file detected
|
|
39
39
|
# endif
|
|
40
|
-
# if ICE_INT_VERSION % 100 <
|
|
40
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
41
41
|
# error Ice patch level mismatch!
|
|
42
42
|
# endif
|
|
43
43
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
# if ICE_INT_VERSION / 100 != 307
|
|
33
33
|
# error Ice version mismatch!
|
|
34
34
|
# endif
|
|
35
|
-
# if ICE_INT_VERSION % 100
|
|
35
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
36
36
|
# error Beta header file detected
|
|
37
37
|
# endif
|
|
38
|
-
# if ICE_INT_VERSION % 100 <
|
|
38
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
39
39
|
# error Ice patch level mismatch!
|
|
40
40
|
# endif
|
|
41
41
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
# if ICE_INT_VERSION / 100 != 307
|
|
39
39
|
# error Ice version mismatch!
|
|
40
40
|
# endif
|
|
41
|
-
# if ICE_INT_VERSION % 100
|
|
41
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
42
42
|
# error Beta header file detected
|
|
43
43
|
# endif
|
|
44
|
-
# if ICE_INT_VERSION % 100 <
|
|
44
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
45
45
|
# error Ice patch level mismatch!
|
|
46
46
|
# endif
|
|
47
47
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
# if ICE_INT_VERSION / 100 != 307
|
|
34
34
|
# error Ice version mismatch!
|
|
35
35
|
# endif
|
|
36
|
-
# if ICE_INT_VERSION % 100
|
|
36
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
37
37
|
# error Beta header file detected
|
|
38
38
|
# endif
|
|
39
|
-
# if ICE_INT_VERSION % 100 <
|
|
39
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
40
40
|
# error Ice patch level mismatch!
|
|
41
41
|
# endif
|
|
42
42
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
# if ICE_INT_VERSION / 100 != 307
|
|
40
40
|
# error Ice version mismatch!
|
|
41
41
|
# endif
|
|
42
|
-
# if ICE_INT_VERSION % 100
|
|
42
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
43
43
|
# error Beta header file detected
|
|
44
44
|
# endif
|
|
45
|
-
# if ICE_INT_VERSION % 100 <
|
|
45
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
46
46
|
# error Ice patch level mismatch!
|
|
47
47
|
# endif
|
|
48
48
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
# if ICE_INT_VERSION / 100 != 307
|
|
40
40
|
# error Ice version mismatch!
|
|
41
41
|
# endif
|
|
42
|
-
# if ICE_INT_VERSION % 100
|
|
42
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
43
43
|
# error Beta header file detected
|
|
44
44
|
# endif
|
|
45
|
-
# if ICE_INT_VERSION % 100 <
|
|
45
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
46
46
|
# error Ice patch level mismatch!
|
|
47
47
|
# endif
|
|
48
48
|
#endif
|
|
@@ -238,7 +238,7 @@ public:
|
|
|
238
238
|
*/
|
|
239
239
|
PropertyDict getPropertiesForPrefix(const ::std::string& prefix, const Context& context = noExplicitContext)
|
|
240
240
|
{
|
|
241
|
-
return _makePromiseOutgoing
|
|
241
|
+
return _makePromiseOutgoing<::Ice::PropertyDict>(true, this, &PropertiesAdminPrx::_iceI_getPropertiesForPrefix, prefix, context).get();
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
/**
|
|
@@ -250,9 +250,9 @@ public:
|
|
|
250
250
|
*/
|
|
251
251
|
template<template<typename> class P = ::std::promise>
|
|
252
252
|
auto getPropertiesForPrefixAsync(const ::std::string& prefix, const Context& context = noExplicitContext)
|
|
253
|
-
-> decltype(::std::declval<P
|
|
253
|
+
-> decltype(::std::declval<P<::Ice::PropertyDict>>().get_future())
|
|
254
254
|
{
|
|
255
|
-
return _makePromiseOutgoing
|
|
255
|
+
return _makePromiseOutgoing<::Ice::PropertyDict, P>(false, this, &PropertiesAdminPrx::_iceI_getPropertiesForPrefix, prefix, context);
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
/**
|
|
@@ -267,16 +267,16 @@ public:
|
|
|
267
267
|
*/
|
|
268
268
|
::std::function<void()>
|
|
269
269
|
getPropertiesForPrefixAsync(const ::std::string& prefix,
|
|
270
|
-
::std::function<void(PropertyDict)> response,
|
|
270
|
+
::std::function<void(::Ice::PropertyDict)> response,
|
|
271
271
|
::std::function<void(::std::exception_ptr)> ex = nullptr,
|
|
272
272
|
::std::function<void(bool)> sent = nullptr,
|
|
273
273
|
const Context& context = noExplicitContext)
|
|
274
274
|
{
|
|
275
|
-
return _makeLamdaOutgoing
|
|
275
|
+
return _makeLamdaOutgoing<::Ice::PropertyDict>(response, ex, sent, this, &Ice::PropertiesAdminPrx::_iceI_getPropertiesForPrefix, prefix, context);
|
|
276
276
|
}
|
|
277
277
|
|
|
278
278
|
/// \cond INTERNAL
|
|
279
|
-
ICE_MEMBER(ICE_API) void _iceI_getPropertiesForPrefix(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT
|
|
279
|
+
ICE_MEMBER(ICE_API) void _iceI_getPropertiesForPrefix(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::Ice::PropertyDict>>&, const ::std::string&, const Context&);
|
|
280
280
|
/// \endcond
|
|
281
281
|
|
|
282
282
|
/**
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
# if ICE_INT_VERSION / 100 != 307
|
|
34
34
|
# error Ice version mismatch!
|
|
35
35
|
# endif
|
|
36
|
-
# if ICE_INT_VERSION % 100
|
|
36
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
37
37
|
# error Beta header file detected
|
|
38
38
|
# endif
|
|
39
|
-
# if ICE_INT_VERSION % 100 <
|
|
39
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
40
40
|
# error Ice patch level mismatch!
|
|
41
41
|
# endif
|
|
42
42
|
#endif
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -41,10 +41,10 @@
|
|
|
41
41
|
# if ICE_INT_VERSION / 100 != 307
|
|
42
42
|
# error Ice version mismatch!
|
|
43
43
|
# endif
|
|
44
|
-
# if ICE_INT_VERSION % 100
|
|
44
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
45
45
|
# error Beta header file detected
|
|
46
46
|
# endif
|
|
47
|
-
# if ICE_INT_VERSION % 100 <
|
|
47
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
48
48
|
# error Ice patch level mismatch!
|
|
49
49
|
# endif
|
|
50
50
|
#endif
|
|
@@ -111,7 +111,7 @@ struct LogMessage
|
|
|
111
111
|
/**
|
|
112
112
|
* The type of message sent to the {@link Logger}.
|
|
113
113
|
*/
|
|
114
|
-
LogMessageType type;
|
|
114
|
+
::Ice::LogMessageType type;
|
|
115
115
|
/**
|
|
116
116
|
* The date and time when the {@link Logger} received this message, expressed
|
|
117
117
|
* as the number of microseconds since the Unix Epoch (00:00:00 UTC on 1 January 1970)
|
|
@@ -128,11 +128,10 @@ struct LogMessage
|
|
|
128
128
|
::std::string message;
|
|
129
129
|
|
|
130
130
|
/**
|
|
131
|
-
* Obtains a tuple containing all of the
|
|
131
|
+
* Obtains a tuple containing all of the struct's data members.
|
|
132
132
|
* @return The data members in a tuple.
|
|
133
133
|
*/
|
|
134
|
-
|
|
135
|
-
std::tuple<const LogMessageType&, const long long int&, const ::std::string&, const ::std::string&> ice_tuple() const
|
|
134
|
+
std::tuple<const ::Ice::LogMessageType&, const long long int&, const ::std::string&, const ::std::string&> ice_tuple() const
|
|
136
135
|
{
|
|
137
136
|
return std::tie(type, timestamp, traceCategory, message);
|
|
138
137
|
}
|
|
@@ -161,7 +160,6 @@ public:
|
|
|
161
160
|
* Obtains a tuple containing all of the exception's data members.
|
|
162
161
|
* @return The data members in a tuple.
|
|
163
162
|
*/
|
|
164
|
-
|
|
165
163
|
std::tuple<> ice_tuple() const
|
|
166
164
|
{
|
|
167
165
|
return std::tie();
|
|
@@ -670,7 +668,7 @@ public:
|
|
|
670
668
|
*/
|
|
671
669
|
::std::function<void()>
|
|
672
670
|
getLogAsync(const LogMessageTypeSeq& messageTypes, const StringSeq& traceCategories, int messageMax,
|
|
673
|
-
::std::function<void(LogMessageSeq, ::std::string)> response,
|
|
671
|
+
::std::function<void(::Ice::LogMessageSeq, ::std::string)> response,
|
|
674
672
|
::std::function<void(::std::exception_ptr)> ex = nullptr,
|
|
675
673
|
::std::function<void(bool)> sent = nullptr,
|
|
676
674
|
const Context& context = noExplicitContext)
|
|
@@ -842,12 +840,12 @@ struct LogMessage
|
|
|
842
840
|
/**
|
|
843
841
|
* The type of message sent to the {@link Logger}.
|
|
844
842
|
*/
|
|
845
|
-
LogMessageType type;
|
|
843
|
+
::Ice::LogMessageType type;
|
|
846
844
|
/**
|
|
847
845
|
* The date and time when the {@link Logger} received this message, expressed
|
|
848
846
|
* as the number of microseconds since the Unix Epoch (00:00:00 UTC on 1 January 1970)
|
|
849
847
|
*/
|
|
850
|
-
Long timestamp;
|
|
848
|
+
::Ice::Long timestamp;
|
|
851
849
|
/**
|
|
852
850
|
* For a message of type trace, the trace category of this log message;
|
|
853
851
|
* otherwise, the empty string.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// Copyright (c) ZeroC, Inc. All rights reserved.
|
|
3
3
|
//
|
|
4
4
|
//
|
|
5
|
-
// Ice version 3.7.
|
|
5
|
+
// Ice version 3.7.3
|
|
6
6
|
//
|
|
7
7
|
// <auto-generated>
|
|
8
8
|
//
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
# if ICE_INT_VERSION / 100 != 307
|
|
40
40
|
# error Ice version mismatch!
|
|
41
41
|
# endif
|
|
42
|
-
# if ICE_INT_VERSION % 100
|
|
42
|
+
# if ICE_INT_VERSION % 100 >= 50
|
|
43
43
|
# error Beta header file detected
|
|
44
44
|
# endif
|
|
45
|
-
# if ICE_INT_VERSION % 100 <
|
|
45
|
+
# if ICE_INT_VERSION % 100 < 3
|
|
46
46
|
# error Ice patch level mismatch!
|
|
47
47
|
# endif
|
|
48
48
|
#endif
|
|
@@ -292,7 +292,7 @@ public:
|
|
|
292
292
|
* @return A function that can be called to cancel the invocation locally.
|
|
293
293
|
*/
|
|
294
294
|
::std::function<void()>
|
|
295
|
-
getClientProxyAsync(::std::function<void(::std::shared_ptr
|
|
295
|
+
getClientProxyAsync(::std::function<void(::std::shared_ptr<::Ice::ObjectPrx>, Ice::optional<bool>)> response,
|
|
296
296
|
::std::function<void(::std::exception_ptr)> ex = nullptr,
|
|
297
297
|
::std::function<void(bool)> sent = nullptr,
|
|
298
298
|
const Context& context = noExplicitContext)
|
|
@@ -316,7 +316,7 @@ public:
|
|
|
316
316
|
*/
|
|
317
317
|
::std::shared_ptr<ObjectPrx> getServerProxy(const Context& context = noExplicitContext)
|
|
318
318
|
{
|
|
319
|
-
return _makePromiseOutgoing<::std::shared_ptr
|
|
319
|
+
return _makePromiseOutgoing<::std::shared_ptr<::Ice::ObjectPrx>>(true, this, &RouterPrx::_iceI_getServerProxy, context).get();
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
/**
|
|
@@ -327,9 +327,9 @@ public:
|
|
|
327
327
|
*/
|
|
328
328
|
template<template<typename> class P = ::std::promise>
|
|
329
329
|
auto getServerProxyAsync(const Context& context = noExplicitContext)
|
|
330
|
-
-> decltype(::std::declval<P<::std::shared_ptr
|
|
330
|
+
-> decltype(::std::declval<P<::std::shared_ptr<::Ice::ObjectPrx>>>().get_future())
|
|
331
331
|
{
|
|
332
|
-
return _makePromiseOutgoing<::std::shared_ptr
|
|
332
|
+
return _makePromiseOutgoing<::std::shared_ptr<::Ice::ObjectPrx>, P>(false, this, &RouterPrx::_iceI_getServerProxy, context);
|
|
333
333
|
}
|
|
334
334
|
|
|
335
335
|
/**
|
|
@@ -342,16 +342,16 @@ public:
|
|
|
342
342
|
* @return A function that can be called to cancel the invocation locally.
|
|
343
343
|
*/
|
|
344
344
|
::std::function<void()>
|
|
345
|
-
getServerProxyAsync(::std::function<void(::std::shared_ptr
|
|
345
|
+
getServerProxyAsync(::std::function<void(::std::shared_ptr<::Ice::ObjectPrx>)> response,
|
|
346
346
|
::std::function<void(::std::exception_ptr)> ex = nullptr,
|
|
347
347
|
::std::function<void(bool)> sent = nullptr,
|
|
348
348
|
const Context& context = noExplicitContext)
|
|
349
349
|
{
|
|
350
|
-
return _makeLamdaOutgoing<::std::shared_ptr
|
|
350
|
+
return _makeLamdaOutgoing<::std::shared_ptr<::Ice::ObjectPrx>>(response, ex, sent, this, &Ice::RouterPrx::_iceI_getServerProxy, context);
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
/// \cond INTERNAL
|
|
354
|
-
ICE_MEMBER(ICE_API) void _iceI_getServerProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr
|
|
354
|
+
ICE_MEMBER(ICE_API) void _iceI_getServerProxy(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr<::Ice::ObjectPrx>>>&, const Context&);
|
|
355
355
|
/// \endcond
|
|
356
356
|
|
|
357
357
|
/**
|
|
@@ -362,7 +362,7 @@ public:
|
|
|
362
362
|
*/
|
|
363
363
|
ObjectProxySeq addProxies(const ObjectProxySeq& proxies, const Context& context = noExplicitContext)
|
|
364
364
|
{
|
|
365
|
-
return _makePromiseOutgoing
|
|
365
|
+
return _makePromiseOutgoing<::Ice::ObjectProxySeq>(true, this, &RouterPrx::_iceI_addProxies, proxies, context).get();
|
|
366
366
|
}
|
|
367
367
|
|
|
368
368
|
/**
|
|
@@ -373,9 +373,9 @@ public:
|
|
|
373
373
|
*/
|
|
374
374
|
template<template<typename> class P = ::std::promise>
|
|
375
375
|
auto addProxiesAsync(const ObjectProxySeq& proxies, const Context& context = noExplicitContext)
|
|
376
|
-
-> decltype(::std::declval<P
|
|
376
|
+
-> decltype(::std::declval<P<::Ice::ObjectProxySeq>>().get_future())
|
|
377
377
|
{
|
|
378
|
-
return _makePromiseOutgoing
|
|
378
|
+
return _makePromiseOutgoing<::Ice::ObjectProxySeq, P>(false, this, &RouterPrx::_iceI_addProxies, proxies, context);
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
/**
|
|
@@ -389,16 +389,16 @@ public:
|
|
|
389
389
|
*/
|
|
390
390
|
::std::function<void()>
|
|
391
391
|
addProxiesAsync(const ObjectProxySeq& proxies,
|
|
392
|
-
::std::function<void(ObjectProxySeq)> response,
|
|
392
|
+
::std::function<void(::Ice::ObjectProxySeq)> response,
|
|
393
393
|
::std::function<void(::std::exception_ptr)> ex = nullptr,
|
|
394
394
|
::std::function<void(bool)> sent = nullptr,
|
|
395
395
|
const Context& context = noExplicitContext)
|
|
396
396
|
{
|
|
397
|
-
return _makeLamdaOutgoing
|
|
397
|
+
return _makeLamdaOutgoing<::Ice::ObjectProxySeq>(response, ex, sent, this, &Ice::RouterPrx::_iceI_addProxies, proxies, context);
|
|
398
398
|
}
|
|
399
399
|
|
|
400
400
|
/// \cond INTERNAL
|
|
401
|
-
ICE_MEMBER(ICE_API) void _iceI_addProxies(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT
|
|
401
|
+
ICE_MEMBER(ICE_API) void _iceI_addProxies(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::Ice::ObjectProxySeq>>&, const ObjectProxySeq&, const Context&);
|
|
402
402
|
/// \endcond
|
|
403
403
|
|
|
404
404
|
/**
|
|
@@ -437,7 +437,7 @@ public:
|
|
|
437
437
|
*/
|
|
438
438
|
::std::shared_ptr<RouterPrx> getRouter(const Context& context = noExplicitContext)
|
|
439
439
|
{
|
|
440
|
-
return _makePromiseOutgoing<::std::shared_ptr
|
|
440
|
+
return _makePromiseOutgoing<::std::shared_ptr<::Ice::RouterPrx>>(true, this, &RouterFinderPrx::_iceI_getRouter, context).get();
|
|
441
441
|
}
|
|
442
442
|
|
|
443
443
|
/**
|
|
@@ -448,9 +448,9 @@ public:
|
|
|
448
448
|
*/
|
|
449
449
|
template<template<typename> class P = ::std::promise>
|
|
450
450
|
auto getRouterAsync(const Context& context = noExplicitContext)
|
|
451
|
-
-> decltype(::std::declval<P<::std::shared_ptr
|
|
451
|
+
-> decltype(::std::declval<P<::std::shared_ptr<::Ice::RouterPrx>>>().get_future())
|
|
452
452
|
{
|
|
453
|
-
return _makePromiseOutgoing<::std::shared_ptr
|
|
453
|
+
return _makePromiseOutgoing<::std::shared_ptr<::Ice::RouterPrx>, P>(false, this, &RouterFinderPrx::_iceI_getRouter, context);
|
|
454
454
|
}
|
|
455
455
|
|
|
456
456
|
/**
|
|
@@ -463,16 +463,16 @@ public:
|
|
|
463
463
|
* @return A function that can be called to cancel the invocation locally.
|
|
464
464
|
*/
|
|
465
465
|
::std::function<void()>
|
|
466
|
-
getRouterAsync(::std::function<void(::std::shared_ptr
|
|
466
|
+
getRouterAsync(::std::function<void(::std::shared_ptr<::Ice::RouterPrx>)> response,
|
|
467
467
|
::std::function<void(::std::exception_ptr)> ex = nullptr,
|
|
468
468
|
::std::function<void(bool)> sent = nullptr,
|
|
469
469
|
const Context& context = noExplicitContext)
|
|
470
470
|
{
|
|
471
|
-
return _makeLamdaOutgoing<::std::shared_ptr
|
|
471
|
+
return _makeLamdaOutgoing<::std::shared_ptr<::Ice::RouterPrx>>(response, ex, sent, this, &Ice::RouterFinderPrx::_iceI_getRouter, context);
|
|
472
472
|
}
|
|
473
473
|
|
|
474
474
|
/// \cond INTERNAL
|
|
475
|
-
ICE_MEMBER(ICE_API) void _iceI_getRouter(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr
|
|
475
|
+
ICE_MEMBER(ICE_API) void _iceI_getRouter(const ::std::shared_ptr<::IceInternal::OutgoingAsyncT<::std::shared_ptr<::Ice::RouterPrx>>>&, const Context&);
|
|
476
476
|
/// \endcond
|
|
477
477
|
|
|
478
478
|
/**
|