zeroc-ice 3.7.11__cp314-cp314-macosx_10_15_universal2.whl → 3.8.0.post1__cp314-cp314-macosx_10_15_universal2.whl
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.
- Glacier2/CannotCreateSessionException.py +40 -0
- Glacier2/IdentitySet.py +293 -0
- Glacier2/IdentitySet_forward.py +10 -0
- Glacier2/PermissionDeniedException.py +40 -0
- Glacier2/PermissionsVerifier.py +189 -0
- Glacier2/PermissionsVerifier_forward.py +10 -0
- Glacier2/Router.py +661 -0
- Glacier2/Router_forward.py +10 -0
- Glacier2/SSLInfo.py +62 -0
- Glacier2/SSLPermissionsVerifier.py +186 -0
- Glacier2/SSLPermissionsVerifier_forward.py +10 -0
- Glacier2/SSLSessionManager.py +192 -0
- Glacier2/SSLSessionManager_forward.py +10 -0
- Glacier2/Session.py +161 -0
- Glacier2/SessionControl.py +407 -0
- Glacier2/SessionControl_forward.py +10 -0
- Glacier2/SessionManager.py +189 -0
- Glacier2/SessionManager_forward.py +10 -0
- Glacier2/SessionNotExistException.py +39 -0
- Glacier2/Session_forward.py +10 -0
- Glacier2/StringSet.py +289 -0
- Glacier2/StringSet_forward.py +10 -0
- Glacier2/__init__.py +78 -225
- Glacier2/py.typed +0 -0
- Ice/AdapterAlreadyActiveException.py +35 -0
- Ice/AdapterNotFoundException.py +35 -0
- Ice/BTEndpointType.py +18 -0
- Ice/BTSEndpointType.py +18 -0
- Ice/Blobject.py +42 -0
- Ice/BoolSeq.py +10 -0
- Ice/Builtin.py +11 -0
- Ice/ByteSeq.py +10 -0
- Ice/Communicator.py +633 -0
- Ice/CompressBatch.py +25 -0
- Ice/Context.py +10 -0
- Ice/Current.py +47 -0
- Ice/Dispatch.py +122 -0
- Ice/DoubleSeq.py +10 -0
- Ice/EncodingVersion.py +41 -0
- Ice/EndpointSelectionType.py +22 -0
- Ice/EventLoopAdapter.py +52 -0
- Ice/Exception.py +27 -0
- Ice/FloatSeq.py +10 -0
- Ice/FormatType.py +22 -0
- Ice/Future.py +375 -0
- Ice/IcePyTypes.py +49 -0
- Ice/Identity.py +40 -0
- Ice/IdentitySeq.py +12 -0
- Ice/ImplicitContext.py +119 -0
- Ice/InitializationData.py +65 -0
- Ice/IntSeq.py +10 -0
- Ice/InvalidReplicaGroupIdException.py +34 -0
- Ice/InvocationFuture.py +155 -0
- Ice/LocalException.py +12 -0
- Ice/LocalExceptions.py +534 -0
- Ice/Locator.py +332 -0
- Ice/LocatorFinder.py +163 -0
- Ice/LocatorFinder_forward.py +10 -0
- Ice/LocatorRegistry.py +387 -0
- Ice/LocatorRegistry_forward.py +10 -0
- Ice/Locator_forward.py +10 -0
- Ice/LogMessage.py +51 -0
- Ice/LogMessageSeq.py +12 -0
- Ice/LogMessageType.py +51 -0
- Ice/LogMessageTypeSeq.py +12 -0
- Ice/Logger.py +100 -0
- Ice/LoggerAdmin.py +380 -0
- Ice/LoggerAdmin_forward.py +10 -0
- Ice/LongSeq.py +10 -0
- Ice/Object.py +150 -0
- Ice/ObjectAdapter.py +621 -0
- Ice/ObjectNotFoundException.py +35 -0
- Ice/ObjectProxySeq.py +12 -0
- Ice/ObjectPrx.py +934 -0
- Ice/ObjectPrx_forward.py +7 -0
- Ice/ObjectSeq.py +12 -0
- Ice/OperationMode.py +52 -0
- Ice/Process.py +217 -0
- Ice/ProcessLogger.py +41 -0
- Ice/Process_forward.py +10 -0
- Ice/Properties.py +371 -0
- Ice/PropertiesAdmin.py +302 -0
- Ice/PropertiesAdmin_forward.py +10 -0
- Ice/PropertyDict.py +10 -0
- Ice/ProtocolVersion.py +39 -0
- Ice/Proxy.py +126 -0
- Ice/RemoteLogger.py +238 -0
- Ice/RemoteLoggerAlreadyAttachedException.py +34 -0
- Ice/RemoteLogger_forward.py +10 -0
- Ice/ReplyStatus.py +91 -0
- Ice/Router.py +322 -0
- Ice/RouterFinder.py +163 -0
- Ice/RouterFinder_forward.py +10 -0
- Ice/Router_forward.py +10 -0
- Ice/SSLEndpointType.py +18 -0
- Ice/ServantLocator.py +88 -0
- Ice/ServerNotFoundException.py +34 -0
- Ice/ShortSeq.py +10 -0
- Ice/SliceChecksumDict.py +10 -0
- Ice/SliceInfo.py +22 -0
- Ice/SlicedData.py +14 -0
- Ice/StringSeq.py +10 -0
- Ice/TCPEndpointType.py +18 -0
- Ice/ToStringMode.py +34 -0
- Ice/UDPEndpointType.py +18 -0
- Ice/URIEndpointType.py +18 -0
- Ice/UnknownSlicedValue.py +39 -0
- Ice/UserException.py +18 -0
- Ice/Util.py +171 -0
- Ice/Value.py +59 -0
- Ice/Value_forward.py +7 -0
- Ice/WSEndpointType.py +18 -0
- Ice/WSSEndpointType.py +18 -0
- Ice/_ArrayUtil.py +51 -0
- Ice/_LoggerI.py +32 -0
- Ice/__init__.py +358 -1997
- Ice/asyncio/EventLoopAdapter.py +31 -0
- Ice/asyncio/__init__.py +5 -0
- Ice/iAPEndpointType.py +18 -0
- Ice/iAPSEndpointType.py +18 -0
- Ice/py.typed +0 -0
- IceBox/AlreadyStartedException.py +34 -0
- IceBox/AlreadyStoppedException.py +34 -0
- IceBox/NoSuchServiceException.py +34 -0
- IceBox/ServiceManager.py +447 -0
- IceBox/ServiceManager_forward.py +10 -0
- IceBox/ServiceObserver.py +229 -0
- IceBox/ServiceObserver_forward.py +10 -0
- IceBox/__init__.py +30 -7
- IceBox/py.typed +0 -0
- IceGrid/AccessDeniedException.py +40 -0
- IceGrid/AdapterDescriptor.py +77 -0
- IceGrid/AdapterDescriptorSeq.py +12 -0
- IceGrid/AdapterDynamicInfo.py +46 -0
- IceGrid/AdapterDynamicInfoSeq.py +12 -0
- IceGrid/AdapterInfo.py +50 -0
- IceGrid/AdapterInfoSeq.py +12 -0
- IceGrid/AdapterNotExistException.py +40 -0
- IceGrid/AdapterObserver.py +338 -0
- IceGrid/AdapterObserver_forward.py +10 -0
- IceGrid/AdaptiveLoadBalancingPolicy.py +48 -0
- IceGrid/AdaptiveLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Admin.py +3662 -0
- IceGrid/AdminSession.py +1406 -0
- IceGrid/AdminSession_forward.py +10 -0
- IceGrid/Admin_forward.py +10 -0
- IceGrid/AllocationException.py +40 -0
- IceGrid/AllocationTimeoutException.py +35 -0
- IceGrid/ApplicationDescriptor.py +89 -0
- IceGrid/ApplicationDescriptorSeq.py +12 -0
- IceGrid/ApplicationInfo.py +63 -0
- IceGrid/ApplicationInfoSeq.py +12 -0
- IceGrid/ApplicationNotExistException.py +40 -0
- IceGrid/ApplicationObserver.py +374 -0
- IceGrid/ApplicationObserver_forward.py +10 -0
- IceGrid/ApplicationUpdateDescriptor.py +118 -0
- IceGrid/ApplicationUpdateInfo.py +51 -0
- IceGrid/BadSignalException.py +40 -0
- IceGrid/BoxedDistributionDescriptor.py +49 -0
- IceGrid/BoxedDistributionDescriptor_forward.py +10 -0
- IceGrid/BoxedString.py +45 -0
- IceGrid/BoxedString_forward.py +10 -0
- IceGrid/CommunicatorDescriptor.py +79 -0
- IceGrid/CommunicatorDescriptor_forward.py +10 -0
- IceGrid/DbEnvDescriptor.py +55 -0
- IceGrid/DbEnvDescriptorSeq.py +12 -0
- IceGrid/DeploymentException.py +40 -0
- IceGrid/DistributionDescriptor.py +42 -0
- IceGrid/FileIterator.py +246 -0
- IceGrid/FileIterator_forward.py +10 -0
- IceGrid/FileNotAvailableException.py +49 -0
- IceGrid/FileParser.py +182 -0
- IceGrid/FileParser_forward.py +10 -0
- IceGrid/IceBoxDescriptor.py +55 -0
- IceGrid/IceBoxDescriptor_forward.py +10 -0
- IceGrid/LoadBalancingPolicy.py +45 -0
- IceGrid/LoadBalancingPolicy_forward.py +10 -0
- IceGrid/LoadInfo.py +43 -0
- IceGrid/LoadSample.py +45 -0
- IceGrid/Locator.py +232 -0
- IceGrid/Locator_forward.py +10 -0
- IceGrid/NodeDescriptor.py +71 -0
- IceGrid/NodeDescriptorDict.py +12 -0
- IceGrid/NodeDynamicInfo.py +57 -0
- IceGrid/NodeDynamicInfoSeq.py +12 -0
- IceGrid/NodeInfo.py +64 -0
- IceGrid/NodeNotExistException.py +40 -0
- IceGrid/NodeObserver.py +424 -0
- IceGrid/NodeObserver_forward.py +10 -0
- IceGrid/NodeUnreachableException.py +46 -0
- IceGrid/NodeUpdateDescriptor.py +92 -0
- IceGrid/NodeUpdateDescriptorSeq.py +12 -0
- IceGrid/ObjectDescriptor.py +48 -0
- IceGrid/ObjectDescriptorSeq.py +12 -0
- IceGrid/ObjectExistsException.py +44 -0
- IceGrid/ObjectInfo.py +46 -0
- IceGrid/ObjectInfoSeq.py +12 -0
- IceGrid/ObjectNotRegisteredException.py +44 -0
- IceGrid/ObjectObserver.py +347 -0
- IceGrid/ObjectObserver_forward.py +10 -0
- IceGrid/ObserverAlreadyRegisteredException.py +49 -0
- IceGrid/OrderedLoadBalancingPolicy.py +41 -0
- IceGrid/OrderedLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ParseException.py +40 -0
- IceGrid/PermissionDeniedException.py +40 -0
- IceGrid/PropertyDescriptor.py +39 -0
- IceGrid/PropertyDescriptorSeq.py +12 -0
- IceGrid/PropertySetDescriptor.py +49 -0
- IceGrid/PropertySetDescriptorDict.py +12 -0
- IceGrid/Query.py +451 -0
- IceGrid/Query_forward.py +10 -0
- IceGrid/RandomLoadBalancingPolicy.py +41 -0
- IceGrid/RandomLoadBalancingPolicy_forward.py +10 -0
- IceGrid/Registry.py +477 -0
- IceGrid/RegistryInfo.py +39 -0
- IceGrid/RegistryInfoSeq.py +12 -0
- IceGrid/RegistryNotExistException.py +40 -0
- IceGrid/RegistryObserver.py +282 -0
- IceGrid/RegistryObserver_forward.py +10 -0
- IceGrid/RegistryUnreachableException.py +46 -0
- IceGrid/Registry_forward.py +10 -0
- IceGrid/ReplicaGroupDescriptor.py +66 -0
- IceGrid/ReplicaGroupDescriptorSeq.py +12 -0
- IceGrid/RoundRobinLoadBalancingPolicy.py +41 -0
- IceGrid/RoundRobinLoadBalancingPolicy_forward.py +10 -0
- IceGrid/ServerDescriptor.py +107 -0
- IceGrid/ServerDescriptorSeq.py +12 -0
- IceGrid/ServerDescriptor_forward.py +10 -0
- IceGrid/ServerDynamicInfo.py +50 -0
- IceGrid/ServerDynamicInfoSeq.py +12 -0
- IceGrid/ServerInfo.py +62 -0
- IceGrid/ServerInstanceDescriptor.py +58 -0
- IceGrid/ServerInstanceDescriptorSeq.py +12 -0
- IceGrid/ServerNotExistException.py +40 -0
- IceGrid/ServerStartException.py +46 -0
- IceGrid/ServerState.py +70 -0
- IceGrid/ServerStopException.py +46 -0
- IceGrid/ServiceDescriptor.py +53 -0
- IceGrid/ServiceDescriptorSeq.py +12 -0
- IceGrid/ServiceDescriptor_forward.py +10 -0
- IceGrid/ServiceInstanceDescriptor.py +60 -0
- IceGrid/ServiceInstanceDescriptorSeq.py +12 -0
- IceGrid/Session.py +498 -0
- IceGrid/Session_forward.py +10 -0
- IceGrid/StringObjectProxyDict.py +12 -0
- IceGrid/StringStringDict.py +10 -0
- IceGrid/TemplateDescriptor.py +55 -0
- IceGrid/TemplateDescriptorDict.py +12 -0
- IceGrid/UserAccountMapper.py +178 -0
- IceGrid/UserAccountMapper_forward.py +10 -0
- IceGrid/UserAccountNotFoundException.py +34 -0
- IceGrid/__init__.py +372 -14
- IceGrid/py.typed +0 -0
- IceMX/ChildInvocationMetrics.py +56 -0
- IceMX/ChildInvocationMetrics_forward.py +10 -0
- IceMX/CollocatedMetrics.py +42 -0
- IceMX/CollocatedMetrics_forward.py +10 -0
- IceMX/ConnectionMetrics.py +53 -0
- IceMX/ConnectionMetrics_forward.py +10 -0
- IceMX/DispatchMetrics.py +57 -0
- IceMX/DispatchMetrics_forward.py +10 -0
- IceMX/InvocationMetrics.py +66 -0
- IceMX/InvocationMetrics_forward.py +10 -0
- IceMX/Metrics.py +66 -0
- IceMX/MetricsAdmin.py +586 -0
- IceMX/MetricsAdmin_forward.py +10 -0
- IceMX/MetricsFailures.py +42 -0
- IceMX/MetricsFailuresSeq.py +12 -0
- IceMX/MetricsMap.py +12 -0
- IceMX/MetricsView.py +12 -0
- IceMX/Metrics_forward.py +10 -0
- IceMX/RemoteMetrics.py +42 -0
- IceMX/RemoteMetrics_forward.py +10 -0
- IceMX/SessionMetrics.py +73 -0
- IceMX/SessionMetrics_forward.py +10 -0
- IceMX/StringIntDict.py +10 -0
- IceMX/SubscriberMetrics.py +57 -0
- IceMX/SubscriberMetrics_forward.py +10 -0
- IceMX/ThreadMetrics.py +59 -0
- IceMX/ThreadMetrics_forward.py +10 -0
- IceMX/TopicMetrics.py +53 -0
- IceMX/TopicMetrics_forward.py +10 -0
- IceMX/UnknownMetricsView.py +34 -0
- IceMX/__init__.py +72 -9
- IceMX/py.typed +0 -0
- IcePy-stubs/__init__.pyi +739 -0
- IcePy.cpython-314-darwin.so +0 -0
- IceStorm/AlreadySubscribed.py +34 -0
- IceStorm/BadQoS.py +40 -0
- IceStorm/Finder.py +163 -0
- IceStorm/Finder_forward.py +10 -0
- IceStorm/LinkExists.py +40 -0
- IceStorm/LinkInfo.py +50 -0
- IceStorm/LinkInfoSeq.py +12 -0
- IceStorm/NoSuchLink.py +40 -0
- IceStorm/NoSuchTopic.py +40 -0
- IceStorm/QoS.py +10 -0
- IceStorm/Topic.py +825 -0
- IceStorm/TopicDict.py +12 -0
- IceStorm/TopicExists.py +40 -0
- IceStorm/TopicManager.py +394 -0
- IceStorm/TopicManager_forward.py +10 -0
- IceStorm/Topic_forward.py +10 -0
- IceStorm/__init__.py +58 -7
- IceStorm/py.typed +0 -0
- slice/DataStorm/SampleEvent.ice +29 -0
- slice/Glacier2/Metrics.ice +34 -75
- slice/Glacier2/PermissionsVerifier.ice +42 -98
- slice/Glacier2/Router.ice +80 -173
- slice/Glacier2/SSLInfo.ice +23 -40
- slice/Glacier2/Session.ice +120 -261
- slice/Ice/BuiltinSequences.ice +33 -38
- slice/Ice/Context.ice +24 -0
- slice/Ice/EndpointTypes.ice +35 -33
- slice/Ice/Identity.ice +24 -63
- slice/Ice/Locator.ice +61 -226
- slice/Ice/LocatorRegistry.ice +77 -0
- slice/Ice/Metrics.ice +189 -424
- slice/Ice/OperationMode.ice +38 -0
- slice/Ice/Process.ice +16 -52
- slice/Ice/PropertiesAdmin.ice +25 -75
- slice/Ice/PropertyDict.ice +23 -0
- slice/Ice/RemoteLogger.ice +113 -213
- slice/Ice/ReplyStatus.ice +65 -0
- slice/Ice/Router.ice +42 -91
- slice/Ice/SliceChecksumDict.ice +7 -25
- slice/Ice/Version.ice +31 -39
- slice/IceBox/ServiceManager.ice +79 -0
- slice/IceGrid/Admin.ice +942 -1918
- slice/IceGrid/Descriptor.ice +476 -1051
- slice/IceGrid/Exception.ice +86 -384
- slice/IceGrid/FileParser.ice +23 -59
- slice/IceGrid/Registry.ice +117 -256
- slice/IceGrid/Session.ice +46 -110
- slice/IceGrid/UserAccountMapper.ice +22 -57
- slice/IceStorm/IceStorm.ice +173 -401
- slice/IceStorm/Metrics.ice +28 -70
- slice2py.py +5 -6
- zeroc_ice-3.8.0.post1.dist-info/METADATA +106 -0
- zeroc_ice-3.8.0.post1.dist-info/RECORD +343 -0
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.post1.dist-info}/WHEEL +1 -1
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.post1.dist-info}/top_level.txt +1 -1
- Glacier2/Metrics_ice.py +0 -82
- Glacier2/PermissionsVerifierF_ice.py +0 -32
- Glacier2/PermissionsVerifier_ice.py +0 -284
- Glacier2/RouterF_ice.py +0 -28
- Glacier2/Router_ice.py +0 -618
- Glacier2/SSLInfo_ice.py +0 -179
- Glacier2/Session_ice.py +0 -1103
- Ice/BuiltinSequences_ice.py +0 -65
- Ice/CommunicatorF_ice.py +0 -27
- Ice/Communicator_ice.py +0 -469
- Ice/ConnectionF_ice.py +0 -33
- Ice/Connection_ice.py +0 -680
- Ice/Current_ice.py +0 -175
- Ice/EndpointF_ice.py +0 -45
- Ice/EndpointTypes_ice.py +0 -54
- Ice/Endpoint_ice.py +0 -304
- Ice/FacetMap_ice.py +0 -27
- Ice/Identity_ice.py +0 -133
- Ice/ImplicitContextF_ice.py +0 -27
- Ice/ImplicitContext_ice.py +0 -119
- Ice/InstrumentationF_ice.py +0 -38
- Ice/Instrumentation_ice.py +0 -566
- Ice/LocalException_ice.py +0 -1715
- Ice/LocatorF_ice.py +0 -32
- Ice/Locator_ice.py +0 -728
- Ice/LoggerF_ice.py +0 -27
- Ice/Logger_ice.py +0 -96
- Ice/Metrics_ice.py +0 -864
- Ice/ObjectAdapterF_ice.py +0 -27
- Ice/ObjectAdapter_ice.py +0 -461
- Ice/ObjectFactory_ice.py +0 -68
- Ice/PluginF_ice.py +0 -30
- Ice/Plugin_ice.py +0 -136
- Ice/ProcessF_ice.py +0 -28
- Ice/Process_ice.py +0 -175
- Ice/PropertiesAdmin_ice.py +0 -247
- Ice/PropertiesF_ice.py +0 -31
- Ice/Properties_ice.py +0 -199
- Ice/Py3/IceFuture.py +0 -52
- Ice/Py3/__init__.py +0 -3
- Ice/RemoteLogger_ice.py +0 -617
- Ice/RouterF_ice.py +0 -28
- Ice/Router_ice.py +0 -350
- Ice/ServantLocatorF_ice.py +0 -27
- Ice/ServantLocator_ice.py +0 -110
- Ice/SliceChecksumDict_ice.py +0 -29
- Ice/ValueFactory_ice.py +0 -125
- Ice/Version_ice.py +0 -217
- IceBox/IceBox_ice.py +0 -644
- IceGrid/Admin_ice.py +0 -6662
- IceGrid/Descriptor_ice.py +0 -1795
- IceGrid/Exception_ice.py +0 -592
- IceGrid/FileParser_ice.py +0 -171
- IceGrid/PluginFacade_ice.py +0 -288
- IceGrid/Registry_ice.py +0 -985
- IceGrid/Session_ice.py +0 -406
- IceGrid/UserAccountMapper_ice.py +0 -166
- IcePatch2/FileInfo_ice.py +0 -287
- IcePatch2/FileServer_ice.py +0 -555
- IcePatch2/__init__.py +0 -11
- IceStorm/IceStorm_ice.py +0 -1265
- IceStorm/Metrics_ice.py +0 -106
- slice/Glacier2/PermissionsVerifierF.ice +0 -30
- slice/Glacier2/RouterF.ice +0 -29
- slice/Ice/Communicator.ice +0 -676
- slice/Ice/CommunicatorF.ice +0 -31
- slice/Ice/Connection.ice +0 -516
- slice/Ice/ConnectionF.ice +0 -33
- slice/Ice/Current.ice +0 -170
- slice/Ice/Endpoint.ice +0 -291
- slice/Ice/EndpointF.ice +0 -43
- slice/Ice/FacetMap.ice +0 -36
- slice/Ice/ImplicitContext.ice +0 -119
- slice/Ice/ImplicitContextF.ice +0 -30
- slice/Ice/Instrumentation.ice +0 -509
- slice/Ice/InstrumentationF.ice +0 -38
- slice/Ice/LocalException.ice +0 -1040
- slice/Ice/LocatorF.ice +0 -32
- slice/Ice/Logger.ice +0 -99
- slice/Ice/LoggerF.ice +0 -31
- slice/Ice/ObjectAdapter.ice +0 -710
- slice/Ice/ObjectAdapterF.ice +0 -31
- slice/Ice/ObjectFactory.ice +0 -71
- slice/Ice/Plugin.ice +0 -131
- slice/Ice/PluginF.ice +0 -36
- slice/Ice/ProcessF.ice +0 -31
- slice/Ice/Properties.ice +0 -244
- slice/Ice/PropertiesF.ice +0 -32
- slice/Ice/RouterF.ice +0 -31
- slice/Ice/ServantLocator.ice +0 -136
- slice/Ice/ServantLocatorF.ice +0 -31
- slice/Ice/ValueFactory.ice +0 -133
- slice/IceBT/ConnectionInfo.ice +0 -59
- slice/IceBT/EndpointInfo.ice +0 -57
- slice/IceBT/Types.ice +0 -45
- slice/IceBox/IceBox.ice +0 -216
- slice/IceGrid/PluginFacade.ice +0 -329
- slice/IceIAP/ConnectionInfo.ice +0 -74
- slice/IceIAP/EndpointInfo.ice +0 -68
- slice/IcePatch2/FileInfo.ice +0 -85
- slice/IcePatch2/FileServer.ice +0 -191
- slice/IceSSL/ConnectionInfo.ice +0 -54
- slice/IceSSL/ConnectionInfoF.ice +0 -31
- slice/IceSSL/EndpointInfo.ice +0 -45
- zeroc_ice-3.7.11.dist-info/METADATA +0 -97
- zeroc_ice-3.7.11.dist-info/RECORD +0 -142
- {zeroc_ice-3.7.11.dist-info → zeroc_ice-3.8.0.post1.dist-info}/entry_points.txt +0 -0
IceGrid/Registry_ice.py
DELETED
|
@@ -1,985 +0,0 @@
|
|
|
1
|
-
# -*- coding: utf-8 -*-
|
|
2
|
-
#
|
|
3
|
-
# Copyright (c) ZeroC, Inc. All rights reserved.
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# Ice version 3.7.11
|
|
7
|
-
#
|
|
8
|
-
# <auto-generated>
|
|
9
|
-
#
|
|
10
|
-
# Generated from file `Registry.ice'
|
|
11
|
-
#
|
|
12
|
-
# Warning: do not edit this file.
|
|
13
|
-
#
|
|
14
|
-
# </auto-generated>
|
|
15
|
-
#
|
|
16
|
-
|
|
17
|
-
from sys import version_info as _version_info_
|
|
18
|
-
import Ice, IcePy
|
|
19
|
-
import IceGrid.Exception_ice
|
|
20
|
-
import IceGrid.Session_ice
|
|
21
|
-
import IceGrid.Admin_ice
|
|
22
|
-
import Ice.Locator_ice
|
|
23
|
-
|
|
24
|
-
# Included module Ice
|
|
25
|
-
_M_Ice = Ice.openModule('Ice')
|
|
26
|
-
|
|
27
|
-
# Included module IceGrid
|
|
28
|
-
_M_IceGrid = Ice.openModule('IceGrid')
|
|
29
|
-
|
|
30
|
-
# Included module Glacier2
|
|
31
|
-
_M_Glacier2 = Ice.openModule('Glacier2')
|
|
32
|
-
|
|
33
|
-
# Start of module IceGrid
|
|
34
|
-
__name__ = 'IceGrid'
|
|
35
|
-
|
|
36
|
-
if 'LoadSample' not in _M_IceGrid.__dict__:
|
|
37
|
-
_M_IceGrid.LoadSample = Ice.createTempClass()
|
|
38
|
-
class LoadSample(Ice.EnumBase):
|
|
39
|
-
"""
|
|
40
|
-
Determines which load sampling interval to use.
|
|
41
|
-
Enumerators:
|
|
42
|
-
LoadSample1 -- Sample every minute.
|
|
43
|
-
LoadSample5 -- Sample every five minutes.
|
|
44
|
-
LoadSample15 -- Sample every fifteen minutes.
|
|
45
|
-
"""
|
|
46
|
-
|
|
47
|
-
def __init__(self, _n, _v):
|
|
48
|
-
Ice.EnumBase.__init__(self, _n, _v)
|
|
49
|
-
|
|
50
|
-
def valueOf(self, _n):
|
|
51
|
-
if _n in self._enumerators:
|
|
52
|
-
return self._enumerators[_n]
|
|
53
|
-
return None
|
|
54
|
-
valueOf = classmethod(valueOf)
|
|
55
|
-
|
|
56
|
-
LoadSample.LoadSample1 = LoadSample("LoadSample1", 0)
|
|
57
|
-
LoadSample.LoadSample5 = LoadSample("LoadSample5", 1)
|
|
58
|
-
LoadSample.LoadSample15 = LoadSample("LoadSample15", 2)
|
|
59
|
-
LoadSample._enumerators = { 0:LoadSample.LoadSample1, 1:LoadSample.LoadSample5, 2:LoadSample.LoadSample15 }
|
|
60
|
-
|
|
61
|
-
_M_IceGrid._t_LoadSample = IcePy.defineEnum('::IceGrid::LoadSample', LoadSample, (), LoadSample._enumerators)
|
|
62
|
-
|
|
63
|
-
_M_IceGrid.LoadSample = LoadSample
|
|
64
|
-
del LoadSample
|
|
65
|
-
|
|
66
|
-
_M_IceGrid._t_Query = IcePy.defineValue('::IceGrid::Query', Ice.Value, -1, (), False, True, None, ())
|
|
67
|
-
|
|
68
|
-
if 'QueryPrx' not in _M_IceGrid.__dict__:
|
|
69
|
-
_M_IceGrid.QueryPrx = Ice.createTempClass()
|
|
70
|
-
class QueryPrx(Ice.ObjectPrx):
|
|
71
|
-
|
|
72
|
-
"""
|
|
73
|
-
Find a well-known object by identity.
|
|
74
|
-
Arguments:
|
|
75
|
-
id -- The identity.
|
|
76
|
-
context -- The request context for the invocation.
|
|
77
|
-
Returns: The proxy or null if no such object has been found.
|
|
78
|
-
"""
|
|
79
|
-
def findObjectById(self, id, context=None):
|
|
80
|
-
return _M_IceGrid.Query._op_findObjectById.invoke(self, ((id, ), context))
|
|
81
|
-
|
|
82
|
-
"""
|
|
83
|
-
Find a well-known object by identity.
|
|
84
|
-
Arguments:
|
|
85
|
-
id -- The identity.
|
|
86
|
-
context -- The request context for the invocation.
|
|
87
|
-
Returns: A future object for the invocation.
|
|
88
|
-
"""
|
|
89
|
-
def findObjectByIdAsync(self, id, context=None):
|
|
90
|
-
return _M_IceGrid.Query._op_findObjectById.invokeAsync(self, ((id, ), context))
|
|
91
|
-
|
|
92
|
-
"""
|
|
93
|
-
Find a well-known object by identity.
|
|
94
|
-
Arguments:
|
|
95
|
-
id -- The identity.
|
|
96
|
-
_response -- The asynchronous response callback.
|
|
97
|
-
_ex -- The asynchronous exception callback.
|
|
98
|
-
_sent -- The asynchronous sent callback.
|
|
99
|
-
context -- The request context for the invocation.
|
|
100
|
-
Returns: An asynchronous result object for the invocation.
|
|
101
|
-
"""
|
|
102
|
-
def begin_findObjectById(self, id, _response=None, _ex=None, _sent=None, context=None):
|
|
103
|
-
return _M_IceGrid.Query._op_findObjectById.begin(self, ((id, ), _response, _ex, _sent, context))
|
|
104
|
-
|
|
105
|
-
"""
|
|
106
|
-
Find a well-known object by identity.
|
|
107
|
-
Arguments:
|
|
108
|
-
id -- The identity.
|
|
109
|
-
Returns: The proxy or null if no such object has been found.
|
|
110
|
-
"""
|
|
111
|
-
def end_findObjectById(self, _r):
|
|
112
|
-
return _M_IceGrid.Query._op_findObjectById.end(self, _r)
|
|
113
|
-
|
|
114
|
-
"""
|
|
115
|
-
Find a well-known object by type. If there are several objects
|
|
116
|
-
registered for the given type, the object is randomly
|
|
117
|
-
selected.
|
|
118
|
-
Arguments:
|
|
119
|
-
type -- The object type.
|
|
120
|
-
context -- The request context for the invocation.
|
|
121
|
-
Returns: The proxy or null, if no such object has been found.
|
|
122
|
-
"""
|
|
123
|
-
def findObjectByType(self, type, context=None):
|
|
124
|
-
return _M_IceGrid.Query._op_findObjectByType.invoke(self, ((type, ), context))
|
|
125
|
-
|
|
126
|
-
"""
|
|
127
|
-
Find a well-known object by type. If there are several objects
|
|
128
|
-
registered for the given type, the object is randomly
|
|
129
|
-
selected.
|
|
130
|
-
Arguments:
|
|
131
|
-
type -- The object type.
|
|
132
|
-
context -- The request context for the invocation.
|
|
133
|
-
Returns: A future object for the invocation.
|
|
134
|
-
"""
|
|
135
|
-
def findObjectByTypeAsync(self, type, context=None):
|
|
136
|
-
return _M_IceGrid.Query._op_findObjectByType.invokeAsync(self, ((type, ), context))
|
|
137
|
-
|
|
138
|
-
"""
|
|
139
|
-
Find a well-known object by type. If there are several objects
|
|
140
|
-
registered for the given type, the object is randomly
|
|
141
|
-
selected.
|
|
142
|
-
Arguments:
|
|
143
|
-
type -- The object type.
|
|
144
|
-
_response -- The asynchronous response callback.
|
|
145
|
-
_ex -- The asynchronous exception callback.
|
|
146
|
-
_sent -- The asynchronous sent callback.
|
|
147
|
-
context -- The request context for the invocation.
|
|
148
|
-
Returns: An asynchronous result object for the invocation.
|
|
149
|
-
"""
|
|
150
|
-
def begin_findObjectByType(self, type, _response=None, _ex=None, _sent=None, context=None):
|
|
151
|
-
return _M_IceGrid.Query._op_findObjectByType.begin(self, ((type, ), _response, _ex, _sent, context))
|
|
152
|
-
|
|
153
|
-
"""
|
|
154
|
-
Find a well-known object by type. If there are several objects
|
|
155
|
-
registered for the given type, the object is randomly
|
|
156
|
-
selected.
|
|
157
|
-
Arguments:
|
|
158
|
-
type -- The object type.
|
|
159
|
-
Returns: The proxy or null, if no such object has been found.
|
|
160
|
-
"""
|
|
161
|
-
def end_findObjectByType(self, _r):
|
|
162
|
-
return _M_IceGrid.Query._op_findObjectByType.end(self, _r)
|
|
163
|
-
|
|
164
|
-
"""
|
|
165
|
-
Find a well-known object by type on the least-loaded node. If
|
|
166
|
-
the registry does not know which node hosts the object
|
|
167
|
-
(for example, because the object was registered with a direct proxy), the
|
|
168
|
-
registry assumes the object is hosted on a node that has a load
|
|
169
|
-
average of 1.0.
|
|
170
|
-
Arguments:
|
|
171
|
-
type -- The object type.
|
|
172
|
-
sample -- The sampling interval.
|
|
173
|
-
context -- The request context for the invocation.
|
|
174
|
-
Returns: The proxy or null, if no such object has been found.
|
|
175
|
-
"""
|
|
176
|
-
def findObjectByTypeOnLeastLoadedNode(self, type, sample, context=None):
|
|
177
|
-
return _M_IceGrid.Query._op_findObjectByTypeOnLeastLoadedNode.invoke(self, ((type, sample), context))
|
|
178
|
-
|
|
179
|
-
"""
|
|
180
|
-
Find a well-known object by type on the least-loaded node. If
|
|
181
|
-
the registry does not know which node hosts the object
|
|
182
|
-
(for example, because the object was registered with a direct proxy), the
|
|
183
|
-
registry assumes the object is hosted on a node that has a load
|
|
184
|
-
average of 1.0.
|
|
185
|
-
Arguments:
|
|
186
|
-
type -- The object type.
|
|
187
|
-
sample -- The sampling interval.
|
|
188
|
-
context -- The request context for the invocation.
|
|
189
|
-
Returns: A future object for the invocation.
|
|
190
|
-
"""
|
|
191
|
-
def findObjectByTypeOnLeastLoadedNodeAsync(self, type, sample, context=None):
|
|
192
|
-
return _M_IceGrid.Query._op_findObjectByTypeOnLeastLoadedNode.invokeAsync(self, ((type, sample), context))
|
|
193
|
-
|
|
194
|
-
"""
|
|
195
|
-
Find a well-known object by type on the least-loaded node. If
|
|
196
|
-
the registry does not know which node hosts the object
|
|
197
|
-
(for example, because the object was registered with a direct proxy), the
|
|
198
|
-
registry assumes the object is hosted on a node that has a load
|
|
199
|
-
average of 1.0.
|
|
200
|
-
Arguments:
|
|
201
|
-
type -- The object type.
|
|
202
|
-
sample -- The sampling interval.
|
|
203
|
-
_response -- The asynchronous response callback.
|
|
204
|
-
_ex -- The asynchronous exception callback.
|
|
205
|
-
_sent -- The asynchronous sent callback.
|
|
206
|
-
context -- The request context for the invocation.
|
|
207
|
-
Returns: An asynchronous result object for the invocation.
|
|
208
|
-
"""
|
|
209
|
-
def begin_findObjectByTypeOnLeastLoadedNode(self, type, sample, _response=None, _ex=None, _sent=None, context=None):
|
|
210
|
-
return _M_IceGrid.Query._op_findObjectByTypeOnLeastLoadedNode.begin(self, ((type, sample), _response, _ex, _sent, context))
|
|
211
|
-
|
|
212
|
-
"""
|
|
213
|
-
Find a well-known object by type on the least-loaded node. If
|
|
214
|
-
the registry does not know which node hosts the object
|
|
215
|
-
(for example, because the object was registered with a direct proxy), the
|
|
216
|
-
registry assumes the object is hosted on a node that has a load
|
|
217
|
-
average of 1.0.
|
|
218
|
-
Arguments:
|
|
219
|
-
type -- The object type.
|
|
220
|
-
sample -- The sampling interval.
|
|
221
|
-
Returns: The proxy or null, if no such object has been found.
|
|
222
|
-
"""
|
|
223
|
-
def end_findObjectByTypeOnLeastLoadedNode(self, _r):
|
|
224
|
-
return _M_IceGrid.Query._op_findObjectByTypeOnLeastLoadedNode.end(self, _r)
|
|
225
|
-
|
|
226
|
-
"""
|
|
227
|
-
Find all the well-known objects with the given type.
|
|
228
|
-
Arguments:
|
|
229
|
-
type -- The object type.
|
|
230
|
-
context -- The request context for the invocation.
|
|
231
|
-
Returns: The proxies or an empty sequence, if no such objects have been found.
|
|
232
|
-
"""
|
|
233
|
-
def findAllObjectsByType(self, type, context=None):
|
|
234
|
-
return _M_IceGrid.Query._op_findAllObjectsByType.invoke(self, ((type, ), context))
|
|
235
|
-
|
|
236
|
-
"""
|
|
237
|
-
Find all the well-known objects with the given type.
|
|
238
|
-
Arguments:
|
|
239
|
-
type -- The object type.
|
|
240
|
-
context -- The request context for the invocation.
|
|
241
|
-
Returns: A future object for the invocation.
|
|
242
|
-
"""
|
|
243
|
-
def findAllObjectsByTypeAsync(self, type, context=None):
|
|
244
|
-
return _M_IceGrid.Query._op_findAllObjectsByType.invokeAsync(self, ((type, ), context))
|
|
245
|
-
|
|
246
|
-
"""
|
|
247
|
-
Find all the well-known objects with the given type.
|
|
248
|
-
Arguments:
|
|
249
|
-
type -- The object type.
|
|
250
|
-
_response -- The asynchronous response callback.
|
|
251
|
-
_ex -- The asynchronous exception callback.
|
|
252
|
-
_sent -- The asynchronous sent callback.
|
|
253
|
-
context -- The request context for the invocation.
|
|
254
|
-
Returns: An asynchronous result object for the invocation.
|
|
255
|
-
"""
|
|
256
|
-
def begin_findAllObjectsByType(self, type, _response=None, _ex=None, _sent=None, context=None):
|
|
257
|
-
return _M_IceGrid.Query._op_findAllObjectsByType.begin(self, ((type, ), _response, _ex, _sent, context))
|
|
258
|
-
|
|
259
|
-
"""
|
|
260
|
-
Find all the well-known objects with the given type.
|
|
261
|
-
Arguments:
|
|
262
|
-
type -- The object type.
|
|
263
|
-
Returns: The proxies or an empty sequence, if no such objects have been found.
|
|
264
|
-
"""
|
|
265
|
-
def end_findAllObjectsByType(self, _r):
|
|
266
|
-
return _M_IceGrid.Query._op_findAllObjectsByType.end(self, _r)
|
|
267
|
-
|
|
268
|
-
"""
|
|
269
|
-
Find all the object replicas associated with the given
|
|
270
|
-
proxy. If the given proxy is not an indirect proxy from a
|
|
271
|
-
replica group, an empty sequence is returned.
|
|
272
|
-
Arguments:
|
|
273
|
-
proxy -- The object proxy.
|
|
274
|
-
context -- The request context for the invocation.
|
|
275
|
-
Returns: The proxies of each object replica or an empty sequence, if the given proxy is not from a replica group.
|
|
276
|
-
"""
|
|
277
|
-
def findAllReplicas(self, proxy, context=None):
|
|
278
|
-
return _M_IceGrid.Query._op_findAllReplicas.invoke(self, ((proxy, ), context))
|
|
279
|
-
|
|
280
|
-
"""
|
|
281
|
-
Find all the object replicas associated with the given
|
|
282
|
-
proxy. If the given proxy is not an indirect proxy from a
|
|
283
|
-
replica group, an empty sequence is returned.
|
|
284
|
-
Arguments:
|
|
285
|
-
proxy -- The object proxy.
|
|
286
|
-
context -- The request context for the invocation.
|
|
287
|
-
Returns: A future object for the invocation.
|
|
288
|
-
"""
|
|
289
|
-
def findAllReplicasAsync(self, proxy, context=None):
|
|
290
|
-
return _M_IceGrid.Query._op_findAllReplicas.invokeAsync(self, ((proxy, ), context))
|
|
291
|
-
|
|
292
|
-
"""
|
|
293
|
-
Find all the object replicas associated with the given
|
|
294
|
-
proxy. If the given proxy is not an indirect proxy from a
|
|
295
|
-
replica group, an empty sequence is returned.
|
|
296
|
-
Arguments:
|
|
297
|
-
proxy -- The object proxy.
|
|
298
|
-
_response -- The asynchronous response callback.
|
|
299
|
-
_ex -- The asynchronous exception callback.
|
|
300
|
-
_sent -- The asynchronous sent callback.
|
|
301
|
-
context -- The request context for the invocation.
|
|
302
|
-
Returns: An asynchronous result object for the invocation.
|
|
303
|
-
"""
|
|
304
|
-
def begin_findAllReplicas(self, proxy, _response=None, _ex=None, _sent=None, context=None):
|
|
305
|
-
return _M_IceGrid.Query._op_findAllReplicas.begin(self, ((proxy, ), _response, _ex, _sent, context))
|
|
306
|
-
|
|
307
|
-
"""
|
|
308
|
-
Find all the object replicas associated with the given
|
|
309
|
-
proxy. If the given proxy is not an indirect proxy from a
|
|
310
|
-
replica group, an empty sequence is returned.
|
|
311
|
-
Arguments:
|
|
312
|
-
proxy -- The object proxy.
|
|
313
|
-
Returns: The proxies of each object replica or an empty sequence, if the given proxy is not from a replica group.
|
|
314
|
-
"""
|
|
315
|
-
def end_findAllReplicas(self, _r):
|
|
316
|
-
return _M_IceGrid.Query._op_findAllReplicas.end(self, _r)
|
|
317
|
-
|
|
318
|
-
@staticmethod
|
|
319
|
-
def checkedCast(proxy, facetOrContext=None, context=None):
|
|
320
|
-
return _M_IceGrid.QueryPrx.ice_checkedCast(proxy, '::IceGrid::Query', facetOrContext, context)
|
|
321
|
-
|
|
322
|
-
@staticmethod
|
|
323
|
-
def uncheckedCast(proxy, facet=None):
|
|
324
|
-
return _M_IceGrid.QueryPrx.ice_uncheckedCast(proxy, facet)
|
|
325
|
-
|
|
326
|
-
@staticmethod
|
|
327
|
-
def ice_staticId():
|
|
328
|
-
return '::IceGrid::Query'
|
|
329
|
-
_M_IceGrid._t_QueryPrx = IcePy.defineProxy('::IceGrid::Query', QueryPrx)
|
|
330
|
-
|
|
331
|
-
_M_IceGrid.QueryPrx = QueryPrx
|
|
332
|
-
del QueryPrx
|
|
333
|
-
|
|
334
|
-
_M_IceGrid.Query = Ice.createTempClass()
|
|
335
|
-
class Query(Ice.Object):
|
|
336
|
-
|
|
337
|
-
def ice_ids(self, current=None):
|
|
338
|
-
return ('::Ice::Object', '::IceGrid::Query')
|
|
339
|
-
|
|
340
|
-
def ice_id(self, current=None):
|
|
341
|
-
return '::IceGrid::Query'
|
|
342
|
-
|
|
343
|
-
@staticmethod
|
|
344
|
-
def ice_staticId():
|
|
345
|
-
return '::IceGrid::Query'
|
|
346
|
-
|
|
347
|
-
def findObjectById(self, id, current=None):
|
|
348
|
-
"""
|
|
349
|
-
Find a well-known object by identity.
|
|
350
|
-
Arguments:
|
|
351
|
-
id -- The identity.
|
|
352
|
-
current -- The Current object for the invocation.
|
|
353
|
-
Returns: A future object for the invocation.
|
|
354
|
-
"""
|
|
355
|
-
raise NotImplementedError("servant method 'findObjectById' not implemented")
|
|
356
|
-
|
|
357
|
-
def findObjectByType(self, type, current=None):
|
|
358
|
-
"""
|
|
359
|
-
Find a well-known object by type. If there are several objects
|
|
360
|
-
registered for the given type, the object is randomly
|
|
361
|
-
selected.
|
|
362
|
-
Arguments:
|
|
363
|
-
type -- The object type.
|
|
364
|
-
current -- The Current object for the invocation.
|
|
365
|
-
Returns: A future object for the invocation.
|
|
366
|
-
"""
|
|
367
|
-
raise NotImplementedError("servant method 'findObjectByType' not implemented")
|
|
368
|
-
|
|
369
|
-
def findObjectByTypeOnLeastLoadedNode(self, type, sample, current=None):
|
|
370
|
-
"""
|
|
371
|
-
Find a well-known object by type on the least-loaded node. If
|
|
372
|
-
the registry does not know which node hosts the object
|
|
373
|
-
(for example, because the object was registered with a direct proxy), the
|
|
374
|
-
registry assumes the object is hosted on a node that has a load
|
|
375
|
-
average of 1.0.
|
|
376
|
-
Arguments:
|
|
377
|
-
type -- The object type.
|
|
378
|
-
sample -- The sampling interval.
|
|
379
|
-
current -- The Current object for the invocation.
|
|
380
|
-
Returns: A future object for the invocation.
|
|
381
|
-
"""
|
|
382
|
-
raise NotImplementedError("servant method 'findObjectByTypeOnLeastLoadedNode' not implemented")
|
|
383
|
-
|
|
384
|
-
def findAllObjectsByType(self, type, current=None):
|
|
385
|
-
"""
|
|
386
|
-
Find all the well-known objects with the given type.
|
|
387
|
-
Arguments:
|
|
388
|
-
type -- The object type.
|
|
389
|
-
current -- The Current object for the invocation.
|
|
390
|
-
Returns: A future object for the invocation.
|
|
391
|
-
"""
|
|
392
|
-
raise NotImplementedError("servant method 'findAllObjectsByType' not implemented")
|
|
393
|
-
|
|
394
|
-
def findAllReplicas(self, proxy, current=None):
|
|
395
|
-
"""
|
|
396
|
-
Find all the object replicas associated with the given
|
|
397
|
-
proxy. If the given proxy is not an indirect proxy from a
|
|
398
|
-
replica group, an empty sequence is returned.
|
|
399
|
-
Arguments:
|
|
400
|
-
proxy -- The object proxy.
|
|
401
|
-
current -- The Current object for the invocation.
|
|
402
|
-
Returns: A future object for the invocation.
|
|
403
|
-
"""
|
|
404
|
-
raise NotImplementedError("servant method 'findAllReplicas' not implemented")
|
|
405
|
-
|
|
406
|
-
def __str__(self):
|
|
407
|
-
return IcePy.stringify(self, _M_IceGrid._t_QueryDisp)
|
|
408
|
-
|
|
409
|
-
__repr__ = __str__
|
|
410
|
-
|
|
411
|
-
_M_IceGrid._t_QueryDisp = IcePy.defineClass('::IceGrid::Query', Query, (), None, ())
|
|
412
|
-
Query._ice_type = _M_IceGrid._t_QueryDisp
|
|
413
|
-
|
|
414
|
-
Query._op_findObjectById = IcePy.Operation('findObjectById', Ice.OperationMode.Idempotent, Ice.OperationMode.Nonmutating, False, None, (), (((), _M_Ice._t_Identity, False, 0),), (), ((), IcePy._t_ObjectPrx, False, 0), ())
|
|
415
|
-
Query._op_findObjectByType = IcePy.Operation('findObjectByType', Ice.OperationMode.Idempotent, Ice.OperationMode.Nonmutating, False, None, (), (((), IcePy._t_string, False, 0),), (), ((), IcePy._t_ObjectPrx, False, 0), ())
|
|
416
|
-
Query._op_findObjectByTypeOnLeastLoadedNode = IcePy.Operation('findObjectByTypeOnLeastLoadedNode', Ice.OperationMode.Idempotent, Ice.OperationMode.Nonmutating, False, None, (), (((), IcePy._t_string, False, 0), ((), _M_IceGrid._t_LoadSample, False, 0)), (), ((), IcePy._t_ObjectPrx, False, 0), ())
|
|
417
|
-
Query._op_findAllObjectsByType = IcePy.Operation('findAllObjectsByType', Ice.OperationMode.Idempotent, Ice.OperationMode.Nonmutating, False, None, (), (((), IcePy._t_string, False, 0),), (), ((), _M_Ice._t_ObjectProxySeq, False, 0), ())
|
|
418
|
-
Query._op_findAllReplicas = IcePy.Operation('findAllReplicas', Ice.OperationMode.Idempotent, Ice.OperationMode.Idempotent, False, None, (), (((), IcePy._t_ObjectPrx, False, 0),), (), ((), _M_Ice._t_ObjectProxySeq, False, 0), ())
|
|
419
|
-
|
|
420
|
-
_M_IceGrid.Query = Query
|
|
421
|
-
del Query
|
|
422
|
-
|
|
423
|
-
_M_IceGrid._t_Registry = IcePy.defineValue('::IceGrid::Registry', Ice.Value, -1, (), False, True, None, ())
|
|
424
|
-
|
|
425
|
-
if 'RegistryPrx' not in _M_IceGrid.__dict__:
|
|
426
|
-
_M_IceGrid.RegistryPrx = Ice.createTempClass()
|
|
427
|
-
class RegistryPrx(Ice.ObjectPrx):
|
|
428
|
-
|
|
429
|
-
"""
|
|
430
|
-
Create a client session.
|
|
431
|
-
Arguments:
|
|
432
|
-
userId -- The user id.
|
|
433
|
-
password -- The password for the given user id.
|
|
434
|
-
context -- The request context for the invocation.
|
|
435
|
-
Returns: A proxy for the newly created session.
|
|
436
|
-
Throws:
|
|
437
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
438
|
-
"""
|
|
439
|
-
def createSession(self, userId, password, context=None):
|
|
440
|
-
return _M_IceGrid.Registry._op_createSession.invoke(self, ((userId, password), context))
|
|
441
|
-
|
|
442
|
-
"""
|
|
443
|
-
Create a client session.
|
|
444
|
-
Arguments:
|
|
445
|
-
userId -- The user id.
|
|
446
|
-
password -- The password for the given user id.
|
|
447
|
-
context -- The request context for the invocation.
|
|
448
|
-
Returns: A future object for the invocation.
|
|
449
|
-
"""
|
|
450
|
-
def createSessionAsync(self, userId, password, context=None):
|
|
451
|
-
return _M_IceGrid.Registry._op_createSession.invokeAsync(self, ((userId, password), context))
|
|
452
|
-
|
|
453
|
-
"""
|
|
454
|
-
Create a client session.
|
|
455
|
-
Arguments:
|
|
456
|
-
userId -- The user id.
|
|
457
|
-
password -- The password for the given user id.
|
|
458
|
-
_response -- The asynchronous response callback.
|
|
459
|
-
_ex -- The asynchronous exception callback.
|
|
460
|
-
_sent -- The asynchronous sent callback.
|
|
461
|
-
context -- The request context for the invocation.
|
|
462
|
-
Returns: An asynchronous result object for the invocation.
|
|
463
|
-
"""
|
|
464
|
-
def begin_createSession(self, userId, password, _response=None, _ex=None, _sent=None, context=None):
|
|
465
|
-
return _M_IceGrid.Registry._op_createSession.begin(self, ((userId, password), _response, _ex, _sent, context))
|
|
466
|
-
|
|
467
|
-
"""
|
|
468
|
-
Create a client session.
|
|
469
|
-
Arguments:
|
|
470
|
-
userId -- The user id.
|
|
471
|
-
password -- The password for the given user id.
|
|
472
|
-
Returns: A proxy for the newly created session.
|
|
473
|
-
Throws:
|
|
474
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
475
|
-
"""
|
|
476
|
-
def end_createSession(self, _r):
|
|
477
|
-
return _M_IceGrid.Registry._op_createSession.end(self, _r)
|
|
478
|
-
|
|
479
|
-
"""
|
|
480
|
-
Create an administrative session.
|
|
481
|
-
Arguments:
|
|
482
|
-
userId -- The user id.
|
|
483
|
-
password -- The password for the given user id.
|
|
484
|
-
context -- The request context for the invocation.
|
|
485
|
-
Returns: A proxy for the newly created session.
|
|
486
|
-
Throws:
|
|
487
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
488
|
-
"""
|
|
489
|
-
def createAdminSession(self, userId, password, context=None):
|
|
490
|
-
return _M_IceGrid.Registry._op_createAdminSession.invoke(self, ((userId, password), context))
|
|
491
|
-
|
|
492
|
-
"""
|
|
493
|
-
Create an administrative session.
|
|
494
|
-
Arguments:
|
|
495
|
-
userId -- The user id.
|
|
496
|
-
password -- The password for the given user id.
|
|
497
|
-
context -- The request context for the invocation.
|
|
498
|
-
Returns: A future object for the invocation.
|
|
499
|
-
"""
|
|
500
|
-
def createAdminSessionAsync(self, userId, password, context=None):
|
|
501
|
-
return _M_IceGrid.Registry._op_createAdminSession.invokeAsync(self, ((userId, password), context))
|
|
502
|
-
|
|
503
|
-
"""
|
|
504
|
-
Create an administrative session.
|
|
505
|
-
Arguments:
|
|
506
|
-
userId -- The user id.
|
|
507
|
-
password -- The password for the given user id.
|
|
508
|
-
_response -- The asynchronous response callback.
|
|
509
|
-
_ex -- The asynchronous exception callback.
|
|
510
|
-
_sent -- The asynchronous sent callback.
|
|
511
|
-
context -- The request context for the invocation.
|
|
512
|
-
Returns: An asynchronous result object for the invocation.
|
|
513
|
-
"""
|
|
514
|
-
def begin_createAdminSession(self, userId, password, _response=None, _ex=None, _sent=None, context=None):
|
|
515
|
-
return _M_IceGrid.Registry._op_createAdminSession.begin(self, ((userId, password), _response, _ex, _sent, context))
|
|
516
|
-
|
|
517
|
-
"""
|
|
518
|
-
Create an administrative session.
|
|
519
|
-
Arguments:
|
|
520
|
-
userId -- The user id.
|
|
521
|
-
password -- The password for the given user id.
|
|
522
|
-
Returns: A proxy for the newly created session.
|
|
523
|
-
Throws:
|
|
524
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
525
|
-
"""
|
|
526
|
-
def end_createAdminSession(self, _r):
|
|
527
|
-
return _M_IceGrid.Registry._op_createAdminSession.end(self, _r)
|
|
528
|
-
|
|
529
|
-
"""
|
|
530
|
-
Create a client session from a secure connection.
|
|
531
|
-
Arguments:
|
|
532
|
-
context -- The request context for the invocation.
|
|
533
|
-
Returns: A proxy for the newly created session.
|
|
534
|
-
Throws:
|
|
535
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
536
|
-
"""
|
|
537
|
-
def createSessionFromSecureConnection(self, context=None):
|
|
538
|
-
return _M_IceGrid.Registry._op_createSessionFromSecureConnection.invoke(self, ((), context))
|
|
539
|
-
|
|
540
|
-
"""
|
|
541
|
-
Create a client session from a secure connection.
|
|
542
|
-
Arguments:
|
|
543
|
-
context -- The request context for the invocation.
|
|
544
|
-
Returns: A future object for the invocation.
|
|
545
|
-
"""
|
|
546
|
-
def createSessionFromSecureConnectionAsync(self, context=None):
|
|
547
|
-
return _M_IceGrid.Registry._op_createSessionFromSecureConnection.invokeAsync(self, ((), context))
|
|
548
|
-
|
|
549
|
-
"""
|
|
550
|
-
Create a client session from a secure connection.
|
|
551
|
-
Arguments:
|
|
552
|
-
_response -- The asynchronous response callback.
|
|
553
|
-
_ex -- The asynchronous exception callback.
|
|
554
|
-
_sent -- The asynchronous sent callback.
|
|
555
|
-
context -- The request context for the invocation.
|
|
556
|
-
Returns: An asynchronous result object for the invocation.
|
|
557
|
-
"""
|
|
558
|
-
def begin_createSessionFromSecureConnection(self, _response=None, _ex=None, _sent=None, context=None):
|
|
559
|
-
return _M_IceGrid.Registry._op_createSessionFromSecureConnection.begin(self, ((), _response, _ex, _sent, context))
|
|
560
|
-
|
|
561
|
-
"""
|
|
562
|
-
Create a client session from a secure connection.
|
|
563
|
-
Arguments:
|
|
564
|
-
Returns: A proxy for the newly created session.
|
|
565
|
-
Throws:
|
|
566
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
567
|
-
"""
|
|
568
|
-
def end_createSessionFromSecureConnection(self, _r):
|
|
569
|
-
return _M_IceGrid.Registry._op_createSessionFromSecureConnection.end(self, _r)
|
|
570
|
-
|
|
571
|
-
"""
|
|
572
|
-
Create an administrative session from a secure connection.
|
|
573
|
-
Arguments:
|
|
574
|
-
context -- The request context for the invocation.
|
|
575
|
-
Returns: A proxy for the newly created session.
|
|
576
|
-
Throws:
|
|
577
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
578
|
-
"""
|
|
579
|
-
def createAdminSessionFromSecureConnection(self, context=None):
|
|
580
|
-
return _M_IceGrid.Registry._op_createAdminSessionFromSecureConnection.invoke(self, ((), context))
|
|
581
|
-
|
|
582
|
-
"""
|
|
583
|
-
Create an administrative session from a secure connection.
|
|
584
|
-
Arguments:
|
|
585
|
-
context -- The request context for the invocation.
|
|
586
|
-
Returns: A future object for the invocation.
|
|
587
|
-
"""
|
|
588
|
-
def createAdminSessionFromSecureConnectionAsync(self, context=None):
|
|
589
|
-
return _M_IceGrid.Registry._op_createAdminSessionFromSecureConnection.invokeAsync(self, ((), context))
|
|
590
|
-
|
|
591
|
-
"""
|
|
592
|
-
Create an administrative session from a secure connection.
|
|
593
|
-
Arguments:
|
|
594
|
-
_response -- The asynchronous response callback.
|
|
595
|
-
_ex -- The asynchronous exception callback.
|
|
596
|
-
_sent -- The asynchronous sent callback.
|
|
597
|
-
context -- The request context for the invocation.
|
|
598
|
-
Returns: An asynchronous result object for the invocation.
|
|
599
|
-
"""
|
|
600
|
-
def begin_createAdminSessionFromSecureConnection(self, _response=None, _ex=None, _sent=None, context=None):
|
|
601
|
-
return _M_IceGrid.Registry._op_createAdminSessionFromSecureConnection.begin(self, ((), _response, _ex, _sent, context))
|
|
602
|
-
|
|
603
|
-
"""
|
|
604
|
-
Create an administrative session from a secure connection.
|
|
605
|
-
Arguments:
|
|
606
|
-
Returns: A proxy for the newly created session.
|
|
607
|
-
Throws:
|
|
608
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
609
|
-
"""
|
|
610
|
-
def end_createAdminSessionFromSecureConnection(self, _r):
|
|
611
|
-
return _M_IceGrid.Registry._op_createAdminSessionFromSecureConnection.end(self, _r)
|
|
612
|
-
|
|
613
|
-
"""
|
|
614
|
-
Get the session timeout. If a client or administrative client
|
|
615
|
-
doesn't call the session keepAlive method in the time interval
|
|
616
|
-
defined by this timeout, IceGrid might reap the session.
|
|
617
|
-
Arguments:
|
|
618
|
-
context -- The request context for the invocation.
|
|
619
|
-
Returns: The timeout (in seconds).
|
|
620
|
-
"""
|
|
621
|
-
def getSessionTimeout(self, context=None):
|
|
622
|
-
return _M_IceGrid.Registry._op_getSessionTimeout.invoke(self, ((), context))
|
|
623
|
-
|
|
624
|
-
"""
|
|
625
|
-
Get the session timeout. If a client or administrative client
|
|
626
|
-
doesn't call the session keepAlive method in the time interval
|
|
627
|
-
defined by this timeout, IceGrid might reap the session.
|
|
628
|
-
Arguments:
|
|
629
|
-
context -- The request context for the invocation.
|
|
630
|
-
Returns: A future object for the invocation.
|
|
631
|
-
"""
|
|
632
|
-
def getSessionTimeoutAsync(self, context=None):
|
|
633
|
-
return _M_IceGrid.Registry._op_getSessionTimeout.invokeAsync(self, ((), context))
|
|
634
|
-
|
|
635
|
-
"""
|
|
636
|
-
Get the session timeout. If a client or administrative client
|
|
637
|
-
doesn't call the session keepAlive method in the time interval
|
|
638
|
-
defined by this timeout, IceGrid might reap the session.
|
|
639
|
-
Arguments:
|
|
640
|
-
_response -- The asynchronous response callback.
|
|
641
|
-
_ex -- The asynchronous exception callback.
|
|
642
|
-
_sent -- The asynchronous sent callback.
|
|
643
|
-
context -- The request context for the invocation.
|
|
644
|
-
Returns: An asynchronous result object for the invocation.
|
|
645
|
-
"""
|
|
646
|
-
def begin_getSessionTimeout(self, _response=None, _ex=None, _sent=None, context=None):
|
|
647
|
-
return _M_IceGrid.Registry._op_getSessionTimeout.begin(self, ((), _response, _ex, _sent, context))
|
|
648
|
-
|
|
649
|
-
"""
|
|
650
|
-
Get the session timeout. If a client or administrative client
|
|
651
|
-
doesn't call the session keepAlive method in the time interval
|
|
652
|
-
defined by this timeout, IceGrid might reap the session.
|
|
653
|
-
Arguments:
|
|
654
|
-
Returns: The timeout (in seconds).
|
|
655
|
-
"""
|
|
656
|
-
def end_getSessionTimeout(self, _r):
|
|
657
|
-
return _M_IceGrid.Registry._op_getSessionTimeout.end(self, _r)
|
|
658
|
-
|
|
659
|
-
"""
|
|
660
|
-
Get the value of the ACM timeout. Clients supporting ACM
|
|
661
|
-
connection heartbeats can enable them instead of explicitly
|
|
662
|
-
sending keep alives requests.
|
|
663
|
-
NOTE: This method is only available since Ice 3.6.
|
|
664
|
-
Arguments:
|
|
665
|
-
context -- The request context for the invocation.
|
|
666
|
-
Returns: The timeout (in seconds).
|
|
667
|
-
"""
|
|
668
|
-
def getACMTimeout(self, context=None):
|
|
669
|
-
return _M_IceGrid.Registry._op_getACMTimeout.invoke(self, ((), context))
|
|
670
|
-
|
|
671
|
-
"""
|
|
672
|
-
Get the value of the ACM timeout. Clients supporting ACM
|
|
673
|
-
connection heartbeats can enable them instead of explicitly
|
|
674
|
-
sending keep alives requests.
|
|
675
|
-
NOTE: This method is only available since Ice 3.6.
|
|
676
|
-
Arguments:
|
|
677
|
-
context -- The request context for the invocation.
|
|
678
|
-
Returns: A future object for the invocation.
|
|
679
|
-
"""
|
|
680
|
-
def getACMTimeoutAsync(self, context=None):
|
|
681
|
-
return _M_IceGrid.Registry._op_getACMTimeout.invokeAsync(self, ((), context))
|
|
682
|
-
|
|
683
|
-
"""
|
|
684
|
-
Get the value of the ACM timeout. Clients supporting ACM
|
|
685
|
-
connection heartbeats can enable them instead of explicitly
|
|
686
|
-
sending keep alives requests.
|
|
687
|
-
NOTE: This method is only available since Ice 3.6.
|
|
688
|
-
Arguments:
|
|
689
|
-
_response -- The asynchronous response callback.
|
|
690
|
-
_ex -- The asynchronous exception callback.
|
|
691
|
-
_sent -- The asynchronous sent callback.
|
|
692
|
-
context -- The request context for the invocation.
|
|
693
|
-
Returns: An asynchronous result object for the invocation.
|
|
694
|
-
"""
|
|
695
|
-
def begin_getACMTimeout(self, _response=None, _ex=None, _sent=None, context=None):
|
|
696
|
-
return _M_IceGrid.Registry._op_getACMTimeout.begin(self, ((), _response, _ex, _sent, context))
|
|
697
|
-
|
|
698
|
-
"""
|
|
699
|
-
Get the value of the ACM timeout. Clients supporting ACM
|
|
700
|
-
connection heartbeats can enable them instead of explicitly
|
|
701
|
-
sending keep alives requests.
|
|
702
|
-
NOTE: This method is only available since Ice 3.6.
|
|
703
|
-
Arguments:
|
|
704
|
-
Returns: The timeout (in seconds).
|
|
705
|
-
"""
|
|
706
|
-
def end_getACMTimeout(self, _r):
|
|
707
|
-
return _M_IceGrid.Registry._op_getACMTimeout.end(self, _r)
|
|
708
|
-
|
|
709
|
-
@staticmethod
|
|
710
|
-
def checkedCast(proxy, facetOrContext=None, context=None):
|
|
711
|
-
return _M_IceGrid.RegistryPrx.ice_checkedCast(proxy, '::IceGrid::Registry', facetOrContext, context)
|
|
712
|
-
|
|
713
|
-
@staticmethod
|
|
714
|
-
def uncheckedCast(proxy, facet=None):
|
|
715
|
-
return _M_IceGrid.RegistryPrx.ice_uncheckedCast(proxy, facet)
|
|
716
|
-
|
|
717
|
-
@staticmethod
|
|
718
|
-
def ice_staticId():
|
|
719
|
-
return '::IceGrid::Registry'
|
|
720
|
-
_M_IceGrid._t_RegistryPrx = IcePy.defineProxy('::IceGrid::Registry', RegistryPrx)
|
|
721
|
-
|
|
722
|
-
_M_IceGrid.RegistryPrx = RegistryPrx
|
|
723
|
-
del RegistryPrx
|
|
724
|
-
|
|
725
|
-
_M_IceGrid.Registry = Ice.createTempClass()
|
|
726
|
-
class Registry(Ice.Object):
|
|
727
|
-
|
|
728
|
-
def ice_ids(self, current=None):
|
|
729
|
-
return ('::Ice::Object', '::IceGrid::Registry')
|
|
730
|
-
|
|
731
|
-
def ice_id(self, current=None):
|
|
732
|
-
return '::IceGrid::Registry'
|
|
733
|
-
|
|
734
|
-
@staticmethod
|
|
735
|
-
def ice_staticId():
|
|
736
|
-
return '::IceGrid::Registry'
|
|
737
|
-
|
|
738
|
-
def createSession(self, userId, password, current=None):
|
|
739
|
-
"""
|
|
740
|
-
Create a client session.
|
|
741
|
-
Arguments:
|
|
742
|
-
userId -- The user id.
|
|
743
|
-
password -- The password for the given user id.
|
|
744
|
-
current -- The Current object for the invocation.
|
|
745
|
-
Returns: A future object for the invocation.
|
|
746
|
-
Throws:
|
|
747
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
748
|
-
"""
|
|
749
|
-
raise NotImplementedError("servant method 'createSession' not implemented")
|
|
750
|
-
|
|
751
|
-
def createAdminSession(self, userId, password, current=None):
|
|
752
|
-
"""
|
|
753
|
-
Create an administrative session.
|
|
754
|
-
Arguments:
|
|
755
|
-
userId -- The user id.
|
|
756
|
-
password -- The password for the given user id.
|
|
757
|
-
current -- The Current object for the invocation.
|
|
758
|
-
Returns: A future object for the invocation.
|
|
759
|
-
Throws:
|
|
760
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
761
|
-
"""
|
|
762
|
-
raise NotImplementedError("servant method 'createAdminSession' not implemented")
|
|
763
|
-
|
|
764
|
-
def createSessionFromSecureConnection(self, current=None):
|
|
765
|
-
"""
|
|
766
|
-
Create a client session from a secure connection.
|
|
767
|
-
Arguments:
|
|
768
|
-
current -- The Current object for the invocation.
|
|
769
|
-
Returns: A future object for the invocation.
|
|
770
|
-
Throws:
|
|
771
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
772
|
-
"""
|
|
773
|
-
raise NotImplementedError("servant method 'createSessionFromSecureConnection' not implemented")
|
|
774
|
-
|
|
775
|
-
def createAdminSessionFromSecureConnection(self, current=None):
|
|
776
|
-
"""
|
|
777
|
-
Create an administrative session from a secure connection.
|
|
778
|
-
Arguments:
|
|
779
|
-
current -- The Current object for the invocation.
|
|
780
|
-
Returns: A future object for the invocation.
|
|
781
|
-
Throws:
|
|
782
|
-
PermissionDeniedException -- Raised if the password for the given user id is not correct, or if the user is not allowed access.
|
|
783
|
-
"""
|
|
784
|
-
raise NotImplementedError("servant method 'createAdminSessionFromSecureConnection' not implemented")
|
|
785
|
-
|
|
786
|
-
def getSessionTimeout(self, current=None):
|
|
787
|
-
"""
|
|
788
|
-
Get the session timeout. If a client or administrative client
|
|
789
|
-
doesn't call the session keepAlive method in the time interval
|
|
790
|
-
defined by this timeout, IceGrid might reap the session.
|
|
791
|
-
Arguments:
|
|
792
|
-
current -- The Current object for the invocation.
|
|
793
|
-
Returns: A future object for the invocation.
|
|
794
|
-
"""
|
|
795
|
-
raise NotImplementedError("servant method 'getSessionTimeout' not implemented")
|
|
796
|
-
|
|
797
|
-
def getACMTimeout(self, current=None):
|
|
798
|
-
"""
|
|
799
|
-
Get the value of the ACM timeout. Clients supporting ACM
|
|
800
|
-
connection heartbeats can enable them instead of explicitly
|
|
801
|
-
sending keep alives requests.
|
|
802
|
-
NOTE: This method is only available since Ice 3.6.
|
|
803
|
-
Arguments:
|
|
804
|
-
current -- The Current object for the invocation.
|
|
805
|
-
Returns: A future object for the invocation.
|
|
806
|
-
"""
|
|
807
|
-
raise NotImplementedError("servant method 'getACMTimeout' not implemented")
|
|
808
|
-
|
|
809
|
-
def __str__(self):
|
|
810
|
-
return IcePy.stringify(self, _M_IceGrid._t_RegistryDisp)
|
|
811
|
-
|
|
812
|
-
__repr__ = __str__
|
|
813
|
-
|
|
814
|
-
_M_IceGrid._t_RegistryDisp = IcePy.defineClass('::IceGrid::Registry', Registry, (), None, ())
|
|
815
|
-
Registry._ice_type = _M_IceGrid._t_RegistryDisp
|
|
816
|
-
|
|
817
|
-
Registry._op_createSession = IcePy.Operation('createSession', Ice.OperationMode.Normal, Ice.OperationMode.Normal, False, None, (), (((), IcePy._t_string, False, 0), ((), IcePy._t_string, False, 0)), (), ((), _M_IceGrid._t_SessionPrx, False, 0), (_M_IceGrid._t_PermissionDeniedException,))
|
|
818
|
-
Registry._op_createAdminSession = IcePy.Operation('createAdminSession', Ice.OperationMode.Normal, Ice.OperationMode.Normal, False, None, (), (((), IcePy._t_string, False, 0), ((), IcePy._t_string, False, 0)), (), ((), _M_IceGrid._t_AdminSessionPrx, False, 0), (_M_IceGrid._t_PermissionDeniedException,))
|
|
819
|
-
Registry._op_createSessionFromSecureConnection = IcePy.Operation('createSessionFromSecureConnection', Ice.OperationMode.Normal, Ice.OperationMode.Normal, False, None, (), (), (), ((), _M_IceGrid._t_SessionPrx, False, 0), (_M_IceGrid._t_PermissionDeniedException,))
|
|
820
|
-
Registry._op_createAdminSessionFromSecureConnection = IcePy.Operation('createAdminSessionFromSecureConnection', Ice.OperationMode.Normal, Ice.OperationMode.Normal, False, None, (), (), (), ((), _M_IceGrid._t_AdminSessionPrx, False, 0), (_M_IceGrid._t_PermissionDeniedException,))
|
|
821
|
-
Registry._op_getSessionTimeout = IcePy.Operation('getSessionTimeout', Ice.OperationMode.Idempotent, Ice.OperationMode.Nonmutating, False, None, (), (), (), ((), IcePy._t_int, False, 0), ())
|
|
822
|
-
Registry._op_getACMTimeout = IcePy.Operation('getACMTimeout', Ice.OperationMode.Idempotent, Ice.OperationMode.Nonmutating, False, None, (), (), (), ((), IcePy._t_int, False, 0), ())
|
|
823
|
-
|
|
824
|
-
_M_IceGrid.Registry = Registry
|
|
825
|
-
del Registry
|
|
826
|
-
|
|
827
|
-
_M_IceGrid._t_Locator = IcePy.defineValue('::IceGrid::Locator', Ice.Value, -1, (), False, True, None, ())
|
|
828
|
-
|
|
829
|
-
if 'LocatorPrx' not in _M_IceGrid.__dict__:
|
|
830
|
-
_M_IceGrid.LocatorPrx = Ice.createTempClass()
|
|
831
|
-
class LocatorPrx(_M_Ice.LocatorPrx):
|
|
832
|
-
|
|
833
|
-
"""
|
|
834
|
-
Get the proxy of the registry object hosted by this IceGrid
|
|
835
|
-
registry.
|
|
836
|
-
Arguments:
|
|
837
|
-
context -- The request context for the invocation.
|
|
838
|
-
Returns: The proxy of the registry object.
|
|
839
|
-
"""
|
|
840
|
-
def getLocalRegistry(self, context=None):
|
|
841
|
-
return _M_IceGrid.Locator._op_getLocalRegistry.invoke(self, ((), context))
|
|
842
|
-
|
|
843
|
-
"""
|
|
844
|
-
Get the proxy of the registry object hosted by this IceGrid
|
|
845
|
-
registry.
|
|
846
|
-
Arguments:
|
|
847
|
-
context -- The request context for the invocation.
|
|
848
|
-
Returns: A future object for the invocation.
|
|
849
|
-
"""
|
|
850
|
-
def getLocalRegistryAsync(self, context=None):
|
|
851
|
-
return _M_IceGrid.Locator._op_getLocalRegistry.invokeAsync(self, ((), context))
|
|
852
|
-
|
|
853
|
-
"""
|
|
854
|
-
Get the proxy of the registry object hosted by this IceGrid
|
|
855
|
-
registry.
|
|
856
|
-
Arguments:
|
|
857
|
-
_response -- The asynchronous response callback.
|
|
858
|
-
_ex -- The asynchronous exception callback.
|
|
859
|
-
_sent -- The asynchronous sent callback.
|
|
860
|
-
context -- The request context for the invocation.
|
|
861
|
-
Returns: An asynchronous result object for the invocation.
|
|
862
|
-
"""
|
|
863
|
-
def begin_getLocalRegistry(self, _response=None, _ex=None, _sent=None, context=None):
|
|
864
|
-
return _M_IceGrid.Locator._op_getLocalRegistry.begin(self, ((), _response, _ex, _sent, context))
|
|
865
|
-
|
|
866
|
-
"""
|
|
867
|
-
Get the proxy of the registry object hosted by this IceGrid
|
|
868
|
-
registry.
|
|
869
|
-
Arguments:
|
|
870
|
-
Returns: The proxy of the registry object.
|
|
871
|
-
"""
|
|
872
|
-
def end_getLocalRegistry(self, _r):
|
|
873
|
-
return _M_IceGrid.Locator._op_getLocalRegistry.end(self, _r)
|
|
874
|
-
|
|
875
|
-
"""
|
|
876
|
-
Get the proxy of the query object hosted by this IceGrid
|
|
877
|
-
registry.
|
|
878
|
-
Arguments:
|
|
879
|
-
context -- The request context for the invocation.
|
|
880
|
-
Returns: The proxy of the query object.
|
|
881
|
-
"""
|
|
882
|
-
def getLocalQuery(self, context=None):
|
|
883
|
-
return _M_IceGrid.Locator._op_getLocalQuery.invoke(self, ((), context))
|
|
884
|
-
|
|
885
|
-
"""
|
|
886
|
-
Get the proxy of the query object hosted by this IceGrid
|
|
887
|
-
registry.
|
|
888
|
-
Arguments:
|
|
889
|
-
context -- The request context for the invocation.
|
|
890
|
-
Returns: A future object for the invocation.
|
|
891
|
-
"""
|
|
892
|
-
def getLocalQueryAsync(self, context=None):
|
|
893
|
-
return _M_IceGrid.Locator._op_getLocalQuery.invokeAsync(self, ((), context))
|
|
894
|
-
|
|
895
|
-
"""
|
|
896
|
-
Get the proxy of the query object hosted by this IceGrid
|
|
897
|
-
registry.
|
|
898
|
-
Arguments:
|
|
899
|
-
_response -- The asynchronous response callback.
|
|
900
|
-
_ex -- The asynchronous exception callback.
|
|
901
|
-
_sent -- The asynchronous sent callback.
|
|
902
|
-
context -- The request context for the invocation.
|
|
903
|
-
Returns: An asynchronous result object for the invocation.
|
|
904
|
-
"""
|
|
905
|
-
def begin_getLocalQuery(self, _response=None, _ex=None, _sent=None, context=None):
|
|
906
|
-
return _M_IceGrid.Locator._op_getLocalQuery.begin(self, ((), _response, _ex, _sent, context))
|
|
907
|
-
|
|
908
|
-
"""
|
|
909
|
-
Get the proxy of the query object hosted by this IceGrid
|
|
910
|
-
registry.
|
|
911
|
-
Arguments:
|
|
912
|
-
Returns: The proxy of the query object.
|
|
913
|
-
"""
|
|
914
|
-
def end_getLocalQuery(self, _r):
|
|
915
|
-
return _M_IceGrid.Locator._op_getLocalQuery.end(self, _r)
|
|
916
|
-
|
|
917
|
-
@staticmethod
|
|
918
|
-
def checkedCast(proxy, facetOrContext=None, context=None):
|
|
919
|
-
return _M_IceGrid.LocatorPrx.ice_checkedCast(proxy, '::IceGrid::Locator', facetOrContext, context)
|
|
920
|
-
|
|
921
|
-
@staticmethod
|
|
922
|
-
def uncheckedCast(proxy, facet=None):
|
|
923
|
-
return _M_IceGrid.LocatorPrx.ice_uncheckedCast(proxy, facet)
|
|
924
|
-
|
|
925
|
-
@staticmethod
|
|
926
|
-
def ice_staticId():
|
|
927
|
-
return '::IceGrid::Locator'
|
|
928
|
-
_M_IceGrid._t_LocatorPrx = IcePy.defineProxy('::IceGrid::Locator', LocatorPrx)
|
|
929
|
-
|
|
930
|
-
_M_IceGrid.LocatorPrx = LocatorPrx
|
|
931
|
-
del LocatorPrx
|
|
932
|
-
|
|
933
|
-
_M_IceGrid.Locator = Ice.createTempClass()
|
|
934
|
-
class Locator(_M_Ice.Locator):
|
|
935
|
-
|
|
936
|
-
def ice_ids(self, current=None):
|
|
937
|
-
return ('::Ice::Locator', '::Ice::Object', '::IceGrid::Locator')
|
|
938
|
-
|
|
939
|
-
def ice_id(self, current=None):
|
|
940
|
-
return '::IceGrid::Locator'
|
|
941
|
-
|
|
942
|
-
@staticmethod
|
|
943
|
-
def ice_staticId():
|
|
944
|
-
return '::IceGrid::Locator'
|
|
945
|
-
|
|
946
|
-
def getLocalRegistry(self, current=None):
|
|
947
|
-
"""
|
|
948
|
-
Get the proxy of the registry object hosted by this IceGrid
|
|
949
|
-
registry.
|
|
950
|
-
Arguments:
|
|
951
|
-
current -- The Current object for the invocation.
|
|
952
|
-
Returns: A future object for the invocation.
|
|
953
|
-
"""
|
|
954
|
-
raise NotImplementedError("servant method 'getLocalRegistry' not implemented")
|
|
955
|
-
|
|
956
|
-
def getLocalQuery(self, current=None):
|
|
957
|
-
"""
|
|
958
|
-
Get the proxy of the query object hosted by this IceGrid
|
|
959
|
-
registry.
|
|
960
|
-
Arguments:
|
|
961
|
-
current -- The Current object for the invocation.
|
|
962
|
-
Returns: A future object for the invocation.
|
|
963
|
-
"""
|
|
964
|
-
raise NotImplementedError("servant method 'getLocalQuery' not implemented")
|
|
965
|
-
|
|
966
|
-
def __str__(self):
|
|
967
|
-
return IcePy.stringify(self, _M_IceGrid._t_LocatorDisp)
|
|
968
|
-
|
|
969
|
-
__repr__ = __str__
|
|
970
|
-
|
|
971
|
-
_M_IceGrid._t_LocatorDisp = IcePy.defineClass('::IceGrid::Locator', Locator, (), None, (_M_Ice._t_LocatorDisp,))
|
|
972
|
-
Locator._ice_type = _M_IceGrid._t_LocatorDisp
|
|
973
|
-
|
|
974
|
-
Locator._op_getLocalRegistry = IcePy.Operation('getLocalRegistry', Ice.OperationMode.Idempotent, Ice.OperationMode.Idempotent, False, None, (), (), (), ((), _M_IceGrid._t_RegistryPrx, False, 0), ())
|
|
975
|
-
Locator._op_getLocalQuery = IcePy.Operation('getLocalQuery', Ice.OperationMode.Idempotent, Ice.OperationMode.Idempotent, False, None, (), (), (), ((), _M_IceGrid._t_QueryPrx, False, 0), ())
|
|
976
|
-
|
|
977
|
-
_M_IceGrid.Locator = Locator
|
|
978
|
-
del Locator
|
|
979
|
-
|
|
980
|
-
# End of module IceGrid
|
|
981
|
-
|
|
982
|
-
Ice.sliceChecksums["::IceGrid::LoadSample"] = "ec48c06fa099138a5fbbce121a9a290"
|
|
983
|
-
Ice.sliceChecksums["::IceGrid::Locator"] = "816e9d7a3cb39b8c80fe342e7f18ae"
|
|
984
|
-
Ice.sliceChecksums["::IceGrid::Query"] = "39dbe5f62c19aa42c2e0fbaf220b4f1"
|
|
985
|
-
Ice.sliceChecksums["::IceGrid::Registry"] = "8298cc0aba1a722d75eb79034fbb076"
|