zeroc-ice 3.7.10.1__cp312-cp312-win_amd64.whl → 3.8.0.post1__cp312-cp312-win_amd64.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.
Files changed (453) hide show
  1. Glacier2/CannotCreateSessionException.py +40 -0
  2. Glacier2/IdentitySet.py +293 -0
  3. Glacier2/IdentitySet_forward.py +10 -0
  4. Glacier2/PermissionDeniedException.py +40 -0
  5. Glacier2/PermissionsVerifier.py +189 -0
  6. Glacier2/PermissionsVerifier_forward.py +10 -0
  7. Glacier2/Router.py +661 -0
  8. Glacier2/Router_forward.py +10 -0
  9. Glacier2/SSLInfo.py +62 -0
  10. Glacier2/SSLPermissionsVerifier.py +186 -0
  11. Glacier2/SSLPermissionsVerifier_forward.py +10 -0
  12. Glacier2/SSLSessionManager.py +192 -0
  13. Glacier2/SSLSessionManager_forward.py +10 -0
  14. Glacier2/Session.py +161 -0
  15. Glacier2/SessionControl.py +407 -0
  16. Glacier2/SessionControl_forward.py +10 -0
  17. Glacier2/SessionManager.py +189 -0
  18. Glacier2/SessionManager_forward.py +10 -0
  19. Glacier2/SessionNotExistException.py +39 -0
  20. Glacier2/Session_forward.py +10 -0
  21. Glacier2/StringSet.py +289 -0
  22. Glacier2/StringSet_forward.py +10 -0
  23. Glacier2/__init__.py +79 -226
  24. Glacier2/py.typed +0 -0
  25. Ice/AdapterAlreadyActiveException.py +35 -0
  26. Ice/AdapterNotFoundException.py +35 -0
  27. Ice/BTEndpointType.py +18 -0
  28. Ice/BTSEndpointType.py +18 -0
  29. Ice/Blobject.py +42 -0
  30. Ice/BoolSeq.py +10 -0
  31. Ice/Builtin.py +11 -0
  32. Ice/ByteSeq.py +10 -0
  33. Ice/Communicator.py +633 -0
  34. Ice/CompressBatch.py +25 -0
  35. Ice/Context.py +10 -0
  36. Ice/Current.py +47 -0
  37. Ice/Dispatch.py +122 -0
  38. Ice/DoubleSeq.py +10 -0
  39. Ice/EncodingVersion.py +41 -0
  40. Ice/EndpointSelectionType.py +22 -0
  41. Ice/EventLoopAdapter.py +52 -0
  42. Ice/Exception.py +27 -0
  43. Ice/FloatSeq.py +10 -0
  44. Ice/FormatType.py +22 -0
  45. Ice/Future.py +375 -0
  46. Ice/IcePyTypes.py +49 -0
  47. Ice/Identity.py +40 -0
  48. Ice/IdentitySeq.py +12 -0
  49. Ice/ImplicitContext.py +119 -0
  50. Ice/InitializationData.py +65 -0
  51. Ice/IntSeq.py +10 -0
  52. Ice/InvalidReplicaGroupIdException.py +34 -0
  53. Ice/InvocationFuture.py +155 -0
  54. Ice/LocalException.py +12 -0
  55. Ice/LocalExceptions.py +534 -0
  56. Ice/Locator.py +332 -0
  57. Ice/LocatorFinder.py +163 -0
  58. Ice/LocatorFinder_forward.py +10 -0
  59. Ice/LocatorRegistry.py +387 -0
  60. Ice/LocatorRegistry_forward.py +10 -0
  61. Ice/Locator_forward.py +10 -0
  62. Ice/LogMessage.py +51 -0
  63. Ice/LogMessageSeq.py +12 -0
  64. Ice/LogMessageType.py +51 -0
  65. Ice/LogMessageTypeSeq.py +12 -0
  66. Ice/Logger.py +100 -0
  67. Ice/LoggerAdmin.py +380 -0
  68. Ice/LoggerAdmin_forward.py +10 -0
  69. Ice/LongSeq.py +10 -0
  70. Ice/Object.py +150 -0
  71. Ice/ObjectAdapter.py +621 -0
  72. Ice/ObjectNotFoundException.py +35 -0
  73. Ice/ObjectProxySeq.py +12 -0
  74. Ice/ObjectPrx.py +934 -0
  75. Ice/ObjectPrx_forward.py +7 -0
  76. Ice/ObjectSeq.py +12 -0
  77. Ice/OperationMode.py +52 -0
  78. Ice/Process.py +217 -0
  79. Ice/ProcessLogger.py +41 -0
  80. Ice/Process_forward.py +10 -0
  81. Ice/Properties.py +371 -0
  82. Ice/PropertiesAdmin.py +302 -0
  83. Ice/PropertiesAdmin_forward.py +10 -0
  84. Ice/PropertyDict.py +10 -0
  85. Ice/ProtocolVersion.py +39 -0
  86. Ice/Proxy.py +126 -0
  87. Ice/RemoteLogger.py +238 -0
  88. Ice/RemoteLoggerAlreadyAttachedException.py +34 -0
  89. Ice/RemoteLogger_forward.py +10 -0
  90. Ice/ReplyStatus.py +91 -0
  91. Ice/Router.py +322 -0
  92. Ice/RouterFinder.py +163 -0
  93. Ice/RouterFinder_forward.py +10 -0
  94. Ice/Router_forward.py +10 -0
  95. Ice/SSLEndpointType.py +18 -0
  96. Ice/ServantLocator.py +88 -0
  97. Ice/ServerNotFoundException.py +34 -0
  98. Ice/ShortSeq.py +10 -0
  99. Ice/SliceChecksumDict.py +10 -0
  100. Ice/SliceInfo.py +22 -0
  101. Ice/SlicedData.py +14 -0
  102. Ice/StringSeq.py +10 -0
  103. Ice/TCPEndpointType.py +18 -0
  104. Ice/ToStringMode.py +34 -0
  105. Ice/UDPEndpointType.py +18 -0
  106. Ice/URIEndpointType.py +18 -0
  107. Ice/UnknownSlicedValue.py +39 -0
  108. Ice/UserException.py +18 -0
  109. Ice/Util.py +171 -0
  110. Ice/Value.py +59 -0
  111. Ice/Value_forward.py +7 -0
  112. Ice/WSEndpointType.py +18 -0
  113. Ice/WSSEndpointType.py +18 -0
  114. Ice/_ArrayUtil.py +51 -0
  115. Ice/_LoggerI.py +32 -0
  116. Ice/__init__.py +369 -2008
  117. Ice/asyncio/EventLoopAdapter.py +31 -0
  118. Ice/asyncio/__init__.py +5 -0
  119. Ice/iAPEndpointType.py +18 -0
  120. Ice/iAPSEndpointType.py +18 -0
  121. Ice/py.typed +0 -0
  122. IceBox/AlreadyStartedException.py +34 -0
  123. IceBox/AlreadyStoppedException.py +34 -0
  124. IceBox/NoSuchServiceException.py +34 -0
  125. IceBox/ServiceManager.py +447 -0
  126. IceBox/ServiceManager_forward.py +10 -0
  127. IceBox/ServiceObserver.py +229 -0
  128. IceBox/ServiceObserver_forward.py +10 -0
  129. IceBox/__init__.py +33 -10
  130. IceBox/py.typed +0 -0
  131. IceGrid/AccessDeniedException.py +40 -0
  132. IceGrid/AdapterDescriptor.py +77 -0
  133. IceGrid/AdapterDescriptorSeq.py +12 -0
  134. IceGrid/AdapterDynamicInfo.py +46 -0
  135. IceGrid/AdapterDynamicInfoSeq.py +12 -0
  136. IceGrid/AdapterInfo.py +50 -0
  137. IceGrid/AdapterInfoSeq.py +12 -0
  138. IceGrid/AdapterNotExistException.py +40 -0
  139. IceGrid/AdapterObserver.py +338 -0
  140. IceGrid/AdapterObserver_forward.py +10 -0
  141. IceGrid/AdaptiveLoadBalancingPolicy.py +48 -0
  142. IceGrid/AdaptiveLoadBalancingPolicy_forward.py +10 -0
  143. IceGrid/Admin.py +3662 -0
  144. IceGrid/AdminSession.py +1406 -0
  145. IceGrid/AdminSession_forward.py +10 -0
  146. IceGrid/Admin_forward.py +10 -0
  147. IceGrid/AllocationException.py +40 -0
  148. IceGrid/AllocationTimeoutException.py +35 -0
  149. IceGrid/ApplicationDescriptor.py +89 -0
  150. IceGrid/ApplicationDescriptorSeq.py +12 -0
  151. IceGrid/ApplicationInfo.py +63 -0
  152. IceGrid/ApplicationInfoSeq.py +12 -0
  153. IceGrid/ApplicationNotExistException.py +40 -0
  154. IceGrid/ApplicationObserver.py +374 -0
  155. IceGrid/ApplicationObserver_forward.py +10 -0
  156. IceGrid/ApplicationUpdateDescriptor.py +118 -0
  157. IceGrid/ApplicationUpdateInfo.py +51 -0
  158. IceGrid/BadSignalException.py +40 -0
  159. IceGrid/BoxedDistributionDescriptor.py +49 -0
  160. IceGrid/BoxedDistributionDescriptor_forward.py +10 -0
  161. IceGrid/BoxedString.py +45 -0
  162. IceGrid/BoxedString_forward.py +10 -0
  163. IceGrid/CommunicatorDescriptor.py +79 -0
  164. IceGrid/CommunicatorDescriptor_forward.py +10 -0
  165. IceGrid/DbEnvDescriptor.py +55 -0
  166. IceGrid/DbEnvDescriptorSeq.py +12 -0
  167. IceGrid/DeploymentException.py +40 -0
  168. IceGrid/DistributionDescriptor.py +42 -0
  169. IceGrid/FileIterator.py +246 -0
  170. IceGrid/FileIterator_forward.py +10 -0
  171. IceGrid/FileNotAvailableException.py +49 -0
  172. IceGrid/FileParser.py +182 -0
  173. IceGrid/FileParser_forward.py +10 -0
  174. IceGrid/IceBoxDescriptor.py +55 -0
  175. IceGrid/IceBoxDescriptor_forward.py +10 -0
  176. IceGrid/LoadBalancingPolicy.py +45 -0
  177. IceGrid/LoadBalancingPolicy_forward.py +10 -0
  178. IceGrid/LoadInfo.py +43 -0
  179. IceGrid/LoadSample.py +45 -0
  180. IceGrid/Locator.py +232 -0
  181. IceGrid/Locator_forward.py +10 -0
  182. IceGrid/NodeDescriptor.py +71 -0
  183. IceGrid/NodeDescriptorDict.py +12 -0
  184. IceGrid/NodeDynamicInfo.py +57 -0
  185. IceGrid/NodeDynamicInfoSeq.py +12 -0
  186. IceGrid/NodeInfo.py +64 -0
  187. IceGrid/NodeNotExistException.py +40 -0
  188. IceGrid/NodeObserver.py +424 -0
  189. IceGrid/NodeObserver_forward.py +10 -0
  190. IceGrid/NodeUnreachableException.py +46 -0
  191. IceGrid/NodeUpdateDescriptor.py +92 -0
  192. IceGrid/NodeUpdateDescriptorSeq.py +12 -0
  193. IceGrid/ObjectDescriptor.py +48 -0
  194. IceGrid/ObjectDescriptorSeq.py +12 -0
  195. IceGrid/ObjectExistsException.py +44 -0
  196. IceGrid/ObjectInfo.py +46 -0
  197. IceGrid/ObjectInfoSeq.py +12 -0
  198. IceGrid/ObjectNotRegisteredException.py +44 -0
  199. IceGrid/ObjectObserver.py +347 -0
  200. IceGrid/ObjectObserver_forward.py +10 -0
  201. IceGrid/ObserverAlreadyRegisteredException.py +49 -0
  202. IceGrid/OrderedLoadBalancingPolicy.py +41 -0
  203. IceGrid/OrderedLoadBalancingPolicy_forward.py +10 -0
  204. IceGrid/ParseException.py +40 -0
  205. IceGrid/PermissionDeniedException.py +40 -0
  206. IceGrid/PropertyDescriptor.py +39 -0
  207. IceGrid/PropertyDescriptorSeq.py +12 -0
  208. IceGrid/PropertySetDescriptor.py +49 -0
  209. IceGrid/PropertySetDescriptorDict.py +12 -0
  210. IceGrid/Query.py +451 -0
  211. IceGrid/Query_forward.py +10 -0
  212. IceGrid/RandomLoadBalancingPolicy.py +41 -0
  213. IceGrid/RandomLoadBalancingPolicy_forward.py +10 -0
  214. IceGrid/Registry.py +477 -0
  215. IceGrid/RegistryInfo.py +39 -0
  216. IceGrid/RegistryInfoSeq.py +12 -0
  217. IceGrid/RegistryNotExistException.py +40 -0
  218. IceGrid/RegistryObserver.py +282 -0
  219. IceGrid/RegistryObserver_forward.py +10 -0
  220. IceGrid/RegistryUnreachableException.py +46 -0
  221. IceGrid/Registry_forward.py +10 -0
  222. IceGrid/ReplicaGroupDescriptor.py +66 -0
  223. IceGrid/ReplicaGroupDescriptorSeq.py +12 -0
  224. IceGrid/RoundRobinLoadBalancingPolicy.py +41 -0
  225. IceGrid/RoundRobinLoadBalancingPolicy_forward.py +10 -0
  226. IceGrid/ServerDescriptor.py +107 -0
  227. IceGrid/ServerDescriptorSeq.py +12 -0
  228. IceGrid/ServerDescriptor_forward.py +10 -0
  229. IceGrid/ServerDynamicInfo.py +50 -0
  230. IceGrid/ServerDynamicInfoSeq.py +12 -0
  231. IceGrid/ServerInfo.py +62 -0
  232. IceGrid/ServerInstanceDescriptor.py +58 -0
  233. IceGrid/ServerInstanceDescriptorSeq.py +12 -0
  234. IceGrid/ServerNotExistException.py +40 -0
  235. IceGrid/ServerStartException.py +46 -0
  236. IceGrid/ServerState.py +70 -0
  237. IceGrid/ServerStopException.py +46 -0
  238. IceGrid/ServiceDescriptor.py +53 -0
  239. IceGrid/ServiceDescriptorSeq.py +12 -0
  240. IceGrid/ServiceDescriptor_forward.py +10 -0
  241. IceGrid/ServiceInstanceDescriptor.py +60 -0
  242. IceGrid/ServiceInstanceDescriptorSeq.py +12 -0
  243. IceGrid/Session.py +498 -0
  244. IceGrid/Session_forward.py +10 -0
  245. IceGrid/StringObjectProxyDict.py +12 -0
  246. IceGrid/StringStringDict.py +10 -0
  247. IceGrid/TemplateDescriptor.py +55 -0
  248. IceGrid/TemplateDescriptorDict.py +12 -0
  249. IceGrid/UserAccountMapper.py +178 -0
  250. IceGrid/UserAccountMapper_forward.py +10 -0
  251. IceGrid/UserAccountNotFoundException.py +34 -0
  252. IceGrid/__init__.py +375 -17
  253. IceGrid/py.typed +0 -0
  254. IceMX/ChildInvocationMetrics.py +56 -0
  255. IceMX/ChildInvocationMetrics_forward.py +10 -0
  256. IceMX/CollocatedMetrics.py +42 -0
  257. IceMX/CollocatedMetrics_forward.py +10 -0
  258. IceMX/ConnectionMetrics.py +53 -0
  259. IceMX/ConnectionMetrics_forward.py +10 -0
  260. IceMX/DispatchMetrics.py +57 -0
  261. IceMX/DispatchMetrics_forward.py +10 -0
  262. IceMX/InvocationMetrics.py +66 -0
  263. IceMX/InvocationMetrics_forward.py +10 -0
  264. IceMX/Metrics.py +66 -0
  265. IceMX/MetricsAdmin.py +586 -0
  266. IceMX/MetricsAdmin_forward.py +10 -0
  267. IceMX/MetricsFailures.py +42 -0
  268. IceMX/MetricsFailuresSeq.py +12 -0
  269. IceMX/MetricsMap.py +12 -0
  270. IceMX/MetricsView.py +12 -0
  271. IceMX/Metrics_forward.py +10 -0
  272. IceMX/RemoteMetrics.py +42 -0
  273. IceMX/RemoteMetrics_forward.py +10 -0
  274. IceMX/SessionMetrics.py +73 -0
  275. IceMX/SessionMetrics_forward.py +10 -0
  276. IceMX/StringIntDict.py +10 -0
  277. IceMX/SubscriberMetrics.py +57 -0
  278. IceMX/SubscriberMetrics_forward.py +10 -0
  279. IceMX/ThreadMetrics.py +59 -0
  280. IceMX/ThreadMetrics_forward.py +10 -0
  281. IceMX/TopicMetrics.py +53 -0
  282. IceMX/TopicMetrics_forward.py +10 -0
  283. IceMX/UnknownMetricsView.py +34 -0
  284. IceMX/__init__.py +75 -12
  285. IceMX/py.typed +0 -0
  286. IcePy-stubs/__init__.pyi +739 -0
  287. IcePy.cp312-win_amd64.pdb +0 -0
  288. IcePy.cp312-win_amd64.pyd +0 -0
  289. IceStorm/AlreadySubscribed.py +34 -0
  290. IceStorm/BadQoS.py +40 -0
  291. IceStorm/Finder.py +163 -0
  292. IceStorm/Finder_forward.py +10 -0
  293. IceStorm/LinkExists.py +40 -0
  294. IceStorm/LinkInfo.py +50 -0
  295. IceStorm/LinkInfoSeq.py +12 -0
  296. IceStorm/NoSuchLink.py +40 -0
  297. IceStorm/NoSuchTopic.py +40 -0
  298. IceStorm/QoS.py +10 -0
  299. IceStorm/Topic.py +825 -0
  300. IceStorm/TopicDict.py +12 -0
  301. IceStorm/TopicExists.py +40 -0
  302. IceStorm/TopicManager.py +394 -0
  303. IceStorm/TopicManager_forward.py +10 -0
  304. IceStorm/Topic_forward.py +10 -0
  305. IceStorm/__init__.py +61 -10
  306. IceStorm/py.typed +0 -0
  307. slice/DataStorm/SampleEvent.ice +29 -0
  308. slice/Glacier2/Metrics.ice +47 -88
  309. slice/Glacier2/PermissionsVerifier.ice +55 -111
  310. slice/Glacier2/Router.ice +93 -186
  311. slice/Glacier2/SSLInfo.ice +42 -59
  312. slice/Glacier2/Session.ice +133 -274
  313. slice/Ice/BuiltinSequences.ice +54 -59
  314. slice/Ice/Context.ice +24 -0
  315. slice/Ice/EndpointTypes.ice +50 -48
  316. slice/Ice/Identity.ice +36 -75
  317. slice/Ice/Locator.ice +74 -239
  318. slice/Ice/LocatorRegistry.ice +77 -0
  319. slice/Ice/Metrics.ice +201 -436
  320. slice/Ice/OperationMode.ice +38 -0
  321. slice/Ice/Process.ice +28 -64
  322. slice/Ice/PropertiesAdmin.ice +37 -87
  323. slice/Ice/PropertyDict.ice +23 -0
  324. slice/Ice/RemoteLogger.ice +126 -226
  325. slice/Ice/ReplyStatus.ice +65 -0
  326. slice/Ice/Router.ice +54 -103
  327. slice/Ice/SliceChecksumDict.ice +18 -36
  328. slice/Ice/Version.ice +43 -51
  329. slice/IceBox/ServiceManager.ice +79 -0
  330. slice/IceGrid/Admin.ice +981 -1957
  331. slice/IceGrid/Descriptor.ice +519 -1094
  332. slice/IceGrid/Exception.ice +98 -396
  333. slice/IceGrid/FileParser.ice +36 -72
  334. slice/IceGrid/Registry.ice +130 -269
  335. slice/IceGrid/Session.ice +64 -128
  336. slice/IceGrid/UserAccountMapper.ice +34 -69
  337. slice/IceStorm/IceStorm.ice +186 -414
  338. slice/IceStorm/Metrics.ice +41 -83
  339. slice2py.py +20 -21
  340. zeroc_ice-3.8.0.post1.dist-info/METADATA +106 -0
  341. zeroc_ice-3.8.0.post1.dist-info/RECORD +344 -0
  342. {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/WHEEL +1 -1
  343. {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/top_level.txt +1 -1
  344. Glacier2/Metrics_ice.py +0 -82
  345. Glacier2/PermissionsVerifierF_ice.py +0 -32
  346. Glacier2/PermissionsVerifier_ice.py +0 -284
  347. Glacier2/RouterF_ice.py +0 -28
  348. Glacier2/Router_ice.py +0 -618
  349. Glacier2/SSLInfo_ice.py +0 -179
  350. Glacier2/Session_ice.py +0 -1103
  351. Ice/BuiltinSequences_ice.py +0 -65
  352. Ice/CommunicatorF_ice.py +0 -27
  353. Ice/Communicator_ice.py +0 -469
  354. Ice/ConnectionF_ice.py +0 -33
  355. Ice/Connection_ice.py +0 -680
  356. Ice/Current_ice.py +0 -175
  357. Ice/EndpointF_ice.py +0 -45
  358. Ice/EndpointTypes_ice.py +0 -54
  359. Ice/Endpoint_ice.py +0 -304
  360. Ice/FacetMap_ice.py +0 -27
  361. Ice/Identity_ice.py +0 -133
  362. Ice/ImplicitContextF_ice.py +0 -27
  363. Ice/ImplicitContext_ice.py +0 -119
  364. Ice/InstrumentationF_ice.py +0 -38
  365. Ice/Instrumentation_ice.py +0 -566
  366. Ice/LocalException_ice.py +0 -1715
  367. Ice/LocatorF_ice.py +0 -32
  368. Ice/Locator_ice.py +0 -728
  369. Ice/LoggerF_ice.py +0 -27
  370. Ice/Logger_ice.py +0 -96
  371. Ice/Metrics_ice.py +0 -864
  372. Ice/ObjectAdapterF_ice.py +0 -27
  373. Ice/ObjectAdapter_ice.py +0 -461
  374. Ice/ObjectFactory_ice.py +0 -68
  375. Ice/PluginF_ice.py +0 -30
  376. Ice/Plugin_ice.py +0 -136
  377. Ice/ProcessF_ice.py +0 -28
  378. Ice/Process_ice.py +0 -175
  379. Ice/PropertiesAdmin_ice.py +0 -247
  380. Ice/PropertiesF_ice.py +0 -31
  381. Ice/Properties_ice.py +0 -199
  382. Ice/Py3/IceFuture.py +0 -52
  383. Ice/Py3/__init__.py +0 -3
  384. Ice/RemoteLogger_ice.py +0 -617
  385. Ice/RouterF_ice.py +0 -28
  386. Ice/Router_ice.py +0 -350
  387. Ice/ServantLocatorF_ice.py +0 -27
  388. Ice/ServantLocator_ice.py +0 -110
  389. Ice/SliceChecksumDict_ice.py +0 -29
  390. Ice/ValueFactory_ice.py +0 -125
  391. Ice/Version_ice.py +0 -217
  392. IceBox/IceBox_ice.py +0 -644
  393. IceGrid/Admin_ice.py +0 -6662
  394. IceGrid/Descriptor_ice.py +0 -1795
  395. IceGrid/Exception_ice.py +0 -592
  396. IceGrid/FileParser_ice.py +0 -171
  397. IceGrid/PluginFacade_ice.py +0 -288
  398. IceGrid/Registry_ice.py +0 -985
  399. IceGrid/Session_ice.py +0 -406
  400. IceGrid/UserAccountMapper_ice.py +0 -166
  401. IcePatch2/FileInfo_ice.py +0 -287
  402. IcePatch2/FileServer_ice.py +0 -555
  403. IcePatch2/__init__.py +0 -11
  404. IceStorm/IceStorm_ice.py +0 -1265
  405. IceStorm/Metrics_ice.py +0 -106
  406. slice/Glacier2/PermissionsVerifierF.ice +0 -30
  407. slice/Glacier2/RouterF.ice +0 -29
  408. slice/Ice/Communicator.ice +0 -676
  409. slice/Ice/CommunicatorF.ice +0 -31
  410. slice/Ice/Connection.ice +0 -516
  411. slice/Ice/ConnectionF.ice +0 -33
  412. slice/Ice/Current.ice +0 -170
  413. slice/Ice/Endpoint.ice +0 -291
  414. slice/Ice/EndpointF.ice +0 -43
  415. slice/Ice/FacetMap.ice +0 -36
  416. slice/Ice/ImplicitContext.ice +0 -119
  417. slice/Ice/ImplicitContextF.ice +0 -30
  418. slice/Ice/Instrumentation.ice +0 -509
  419. slice/Ice/InstrumentationF.ice +0 -38
  420. slice/Ice/LocalException.ice +0 -1040
  421. slice/Ice/LocatorF.ice +0 -32
  422. slice/Ice/Logger.ice +0 -99
  423. slice/Ice/LoggerF.ice +0 -31
  424. slice/Ice/ObjectAdapter.ice +0 -710
  425. slice/Ice/ObjectAdapterF.ice +0 -31
  426. slice/Ice/ObjectFactory.ice +0 -71
  427. slice/Ice/Plugin.ice +0 -131
  428. slice/Ice/PluginF.ice +0 -36
  429. slice/Ice/ProcessF.ice +0 -31
  430. slice/Ice/Properties.ice +0 -244
  431. slice/Ice/PropertiesF.ice +0 -32
  432. slice/Ice/RouterF.ice +0 -31
  433. slice/Ice/ServantLocator.ice +0 -136
  434. slice/Ice/ServantLocatorF.ice +0 -31
  435. slice/Ice/ValueFactory.ice +0 -133
  436. slice/IceBT/ConnectionInfo.ice +0 -59
  437. slice/IceBT/EndpointInfo.ice +0 -57
  438. slice/IceBT/Types.ice +0 -45
  439. slice/IceBox/IceBox.ice +0 -216
  440. slice/IceDiscovery/IceDiscovery.ice +0 -98
  441. slice/IceGrid/PluginFacade.ice +0 -329
  442. slice/IceIAP/ConnectionInfo.ice +0 -74
  443. slice/IceIAP/EndpointInfo.ice +0 -68
  444. slice/IceLocatorDiscovery/IceLocatorDiscovery.ice +0 -83
  445. slice/IcePatch2/FileInfo.ice +0 -85
  446. slice/IcePatch2/FileServer.ice +0 -191
  447. slice/IceSSL/ConnectionInfo.ice +0 -54
  448. slice/IceSSL/ConnectionInfoF.ice +0 -31
  449. slice/IceSSL/EndpointInfo.ice +0 -45
  450. zeroc_ice-3.7.10.1.dist-info/LICENSE +0 -340
  451. zeroc_ice-3.7.10.1.dist-info/METADATA +0 -97
  452. zeroc_ice-3.7.10.1.dist-info/RECORD +0 -145
  453. {zeroc_ice-3.7.10.1.dist-info → zeroc_ice-3.8.0.post1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,739 @@
1
+ # Copyright (c) ZeroC, Inc.
2
+
3
+ # IcePy contains (unfortunately) a mix of public and internal APIs.
4
+ # The public APIs, things that get re-exported through Ice, must be documented; internal APIs do not.
5
+ #
6
+ # These doc comments must be synchronized with the documentation in the corresponding IcePy C++ files.
7
+ # 1. Sphinx uses the doc comments from the IcePy native module directly.
8
+ # 2. IcePy stubs (this file) are used by pyright and IDEs for type checking and code completion.
9
+ #
10
+ # It would be nice if this file could be generated automatically from the C++ files using `stubgen`,
11
+ # but for now we maintain it manually since the generated stubs are incomplete for use with pyright.
12
+
13
+ from collections.abc import Awaitable, Callable
14
+ from typing import Any, Self, Type, TypeVar
15
+
16
+ import Ice
17
+
18
+ T = TypeVar("T", bound=Ice.ObjectPrx)
19
+
20
+ class AsyncInvocationContext:
21
+ def cancel(self) -> None: ...
22
+
23
+ class BatchRequest:
24
+ """
25
+ Represents a batch request.
26
+ A batch request is created by invoking an operation on a batch-oneway or batch-datagram proxy.
27
+ """
28
+
29
+ def enqueue(self) -> None:
30
+ """
31
+ Queues this request.
32
+ """
33
+ ...
34
+
35
+ def getOperation(self) -> str:
36
+ """
37
+ Gets the name of the operation.
38
+
39
+ Returns
40
+ -------
41
+ str
42
+ The operation name.
43
+ """
44
+ ...
45
+
46
+ def getProxy(self) -> Ice.ObjectPrx:
47
+ """
48
+ Gets the proxy used to create this batch request.
49
+
50
+ Returns
51
+ -------
52
+ Ice.ObjectPrx
53
+ The proxy.
54
+ """
55
+ ...
56
+
57
+ def getSize(self) -> int:
58
+ """
59
+ Gets the size of the request.
60
+
61
+ Returns
62
+ -------
63
+ int
64
+ The number of bytes consumed by the request.
65
+ """
66
+ ...
67
+
68
+ class Communicator:
69
+ @classmethod
70
+ def __init__(cls, initData: Ice.InitializationData | None) -> None: ...
71
+ def _getWrapper(self) -> Ice.Communicator: ...
72
+ def _setWrapper(self, wrapper: Ice.Communicator) -> None: ...
73
+ def addAdminFacet(self, servant: Ice.Object | None, facet: str) -> None: ...
74
+ def createAdmin(self, adminAdapter: Ice.ObjectAdapter | None, adminIdentity: Ice.Identity) -> Ice.ObjectPrx: ...
75
+ def createObjectAdapter(self, name: str) -> ObjectAdapter: ...
76
+ def createObjectAdapterWithEndpoints(self, name: str, endpoints: str) -> ObjectAdapter: ...
77
+ def createObjectAdapterWithRouter(self, name: str, router: Ice.RouterPrx) -> ObjectAdapter: ...
78
+ def destroy(self) -> None: ...
79
+ def destroyAsync(self, callable: Callable) -> None: ...
80
+ def findAdminFacet(self, facet: str) -> Ice.Object: ...
81
+ def findAllAdminFacets(self) -> dict: ...
82
+ def flushBatchRequests(self, compress: Ice.CompressBatch) -> None: ...
83
+ def flushBatchRequestsAsync(self, compress: Ice.CompressBatch) -> Awaitable[None]: ...
84
+ def getAdmin(self) -> Ice.ObjectPrx | None: ...
85
+ def getDefaultLocator(self) -> Ice.LocatorPrx | None: ...
86
+ def getDefaultObjectAdapter(self) -> Ice.ObjectAdapter | None: ...
87
+ def getDefaultRouter(self) -> Ice.RouterPrx | None: ...
88
+ def getImplicitContext(self) -> ImplicitContext | None: ...
89
+ def getLogger(self) -> Ice.Logger | Logger: ...
90
+ def getProperties(self) -> Properties: ...
91
+ def identityToString(self, identity: Ice.Identity) -> str: ...
92
+ def isShutdown(self) -> bool: ...
93
+ def propertyToProxy(self, property: str) -> Ice.ObjectPrx: ...
94
+ def proxyToProperty(self, proxy: Ice.ObjectPrx, property: str) -> dict[str, str]: ...
95
+ def proxyToString(self, proxy: Ice.ObjectPrx | None) -> str: ...
96
+ def removeAdminFacet(self, facet: str) -> Ice.Object: ...
97
+ def setDefaultLocator(self, locator: Ice.LocatorPrx | None) -> None: ...
98
+ def setDefaultObjectAdapter(self, adapter: Ice.ObjectAdapter | None) -> None: ...
99
+ def setDefaultRouter(self, router: Ice.RouterPrx | None) -> None: ...
100
+ def shutdown(self) -> None: ...
101
+ def shutdownCompleted(self) -> Awaitable[None]: ...
102
+ def stringToProxy(self, str: str) -> Ice.ObjectPrx: ...
103
+ def waitForShutdown(self, timeout: int) -> bool: ...
104
+
105
+ class Connection:
106
+ """Represents a connection that uses the Ice protocol."""
107
+
108
+ def abort(self) -> None:
109
+ """Aborts this connection."""
110
+ ...
111
+
112
+ def close(self) -> Awaitable[None]:
113
+ """
114
+ Starts a graceful closure of this connection once all outstanding invocations have completed.
115
+
116
+ Returns
117
+ -------
118
+ Awaitable[None]
119
+ A future that becomes available when the connection is closed.
120
+ """
121
+ ...
122
+
123
+ def createProxy(self, identity: Ice.Identity) -> Ice.ObjectPrx:
124
+ """
125
+ Creates a special proxy (a 'fixed proxy') that always uses this connection.
126
+
127
+ Parameters
128
+ ----------
129
+ identity : Ice.Identity
130
+ The identity of the target object.
131
+
132
+ Returns
133
+ -------
134
+ Ice.ObjectPrx
135
+ A fixed proxy with the provided identity.
136
+ """
137
+ ...
138
+
139
+ def disableInactivityCheck(self) -> None:
140
+ """
141
+ Disables the inactivity check on this connection.
142
+
143
+ By default, Ice will close connections that remain inactive for a certain period.
144
+ This function disables that behavior for this connection.
145
+ """
146
+ ...
147
+
148
+ def setAdapter(self, adapter: Ice.ObjectAdapter | None) -> None:
149
+ """
150
+ Associates an object adapter with this connection.
151
+
152
+ When a connection receives a request, it dispatches this request using its associated object adapter.
153
+ If the associated object adapter is ``None``, the connection rejects any incoming request with an
154
+ :class:`ObjectNotExistException`.
155
+
156
+ The default object adapter of an incoming connection is the object adapter that created this connection;
157
+ the default object adapter of an outgoing connection is the communicator's default object adapter.
158
+
159
+ Parameters
160
+ ----------
161
+ adapter : Ice.ObjectAdapter | None
162
+ The object adapter to associate with this connection.
163
+ """
164
+ ...
165
+
166
+ def getAdapter(self) -> Ice.ObjectAdapter | None:
167
+ """
168
+ Gets the object adapter associated with this connection.
169
+
170
+ Returns
171
+ -------
172
+ Ice.ObjectAdapter | None
173
+ The object adapter associated with this connection.
174
+ """
175
+ ...
176
+
177
+ def flushBatchRequests(self, compress: Ice.CompressBatch) -> None:
178
+ """
179
+ Flushes any pending batch requests for this connection.
180
+
181
+ This corresponds to all batch requests invoked on fixed proxies associated with the connection.
182
+
183
+ Parameters
184
+ ----------
185
+ compress : Ice.CompressBatch
186
+ Specifies whether or not the queued batch requests should be compressed before being sent over the wire.
187
+ """
188
+ ...
189
+
190
+ def flushBatchRequestsAsync(
191
+ self,
192
+ compress: Ice.CompressBatch,
193
+ ) -> Awaitable[None]:
194
+ """
195
+ Flushes any pending batch requests for this connection asynchronously.
196
+
197
+ This corresponds to all batch requests invoked on fixed proxies associated with the connection.
198
+
199
+ Parameters
200
+ ----------
201
+ compress : Ice.CompressBatch
202
+ Specifies whether or not the queued batch requests should be compressed before being sent over the wire.
203
+
204
+ Returns
205
+ -------
206
+ Awaitable[None]
207
+ A future that becomes available when the flush completes.
208
+ """
209
+ ...
210
+
211
+ def setCloseCallback(self, callback: Callable[[Connection], None]) -> None:
212
+ """
213
+ Sets a close callback on the connection. The callback is called by the connection when it's closed.
214
+ The callback is called from the Ice thread pool associated with the connection.
215
+
216
+ Parameters
217
+ ----------
218
+ callback : Callable[[Connection], None]
219
+ The close callback callable.
220
+ """
221
+ ...
222
+
223
+ def type(self) -> str:
224
+ """
225
+ Returns the connection type. This corresponds to the endpoint type, such as 'tcp', 'udp', etc.
226
+
227
+ Returns
228
+ -------
229
+ str
230
+ The type of the connection.
231
+ """
232
+ ...
233
+
234
+ def toString(self) -> str:
235
+ """
236
+ Returns a description of the connection as human readable text, suitable for logging or error messages.
237
+
238
+ Notes
239
+ -----
240
+ This function remains usable after the connection is closed or aborted.
241
+
242
+ Returns
243
+ -------
244
+ str
245
+ The description of the connection as human readable text.
246
+ """
247
+ ...
248
+
249
+ def getInfo(self) -> Ice.ConnectionInfo:
250
+ """
251
+ Returns the connection information.
252
+
253
+ Returns
254
+ -------
255
+ Ice.ConnectionInfo
256
+ The connection information.
257
+ """
258
+ ...
259
+
260
+ def getEndpoint(self) -> Endpoint:
261
+ """
262
+ Gets the endpoint from which the connection was created.
263
+
264
+ Returns
265
+ -------
266
+ Ice.Endpoint
267
+ The endpoint from which the connection was created.
268
+ """
269
+ ...
270
+
271
+ def setBufferSize(self, rcvSize: int, sndSize: int) -> None:
272
+ """
273
+ Sets the size of the receive and send buffers.
274
+
275
+ Parameters
276
+ ----------
277
+ rcvSize : int
278
+ The size of the receive buffer.
279
+ sndSize : int
280
+ The size of the send buffer.
281
+ """
282
+ ...
283
+
284
+ def throwException(self) -> None:
285
+ """
286
+ Raises an exception that provides the reason for the closure of this connection. For example,
287
+ this function raises :class:`CloseConnectionException` when the connection was closed gracefully by the peer;
288
+ it raises :class:`ConnectionAbortedException` when the connection is aborted with :func:`abort`.
289
+ This function does nothing if the connection is not yet closed.
290
+ """
291
+ ...
292
+
293
+ def __eq__(self, other: object) -> bool: ...
294
+ def __ge__(self, other: object) -> bool: ...
295
+ def __gt__(self, other: object) -> bool: ...
296
+ def __hash__(self) -> int: ...
297
+ def __le__(self, other: object) -> bool: ...
298
+ def __lt__(self, other: object) -> bool: ...
299
+ def __ne__(self, other: object) -> bool: ...
300
+
301
+ class ConnectionInfo:
302
+ """
303
+ Base class for all connection info classes.
304
+ """
305
+
306
+ underlying: ConnectionInfo | None
307
+ """
308
+ ConnectionInfo | None: The information of the underlying transport or ``None`` if there's no underlying transport.
309
+ """
310
+
311
+ incoming: bool
312
+ """bool: ``True`` if this is an incoming connection, ``False`` otherwise."""
313
+
314
+ adapterName: str
315
+ """str: The name of the adapter associated with the connection."""
316
+
317
+ class DispatchCallback:
318
+ def response(self, *args: tuple) -> None: ...
319
+ def exception(self, exception: BaseException) -> None: ...
320
+
321
+ class Endpoint:
322
+ """
323
+ An endpoint specifies the address of the server-end of an Ice connection.
324
+ An object adapter listens on one or more endpoints and a client establishes a connection to an endpoint.
325
+ """
326
+
327
+ def toString(self) -> str:
328
+ """
329
+ Returns a string representation of this endpoint.
330
+
331
+ Returns
332
+ -------
333
+ str
334
+ The string representation of this endpoint.
335
+ """
336
+ ...
337
+
338
+ def getInfo(self) -> EndpointInfo:
339
+ """
340
+ Returns this endpoint's information.
341
+
342
+ Returns
343
+ -------
344
+ Ice.EndpointInfo
345
+ This endpoint's information class.
346
+ """
347
+ ...
348
+
349
+ def __eq__(self, other: object) -> bool: ...
350
+ def __ge__(self, other: object) -> bool: ...
351
+ def __gt__(self, other: object) -> bool: ...
352
+ def __le__(self, other: object) -> bool: ...
353
+ def __lt__(self, other: object) -> bool: ...
354
+ def __ne__(self, other: object) -> bool: ...
355
+
356
+ class EndpointInfo:
357
+ """
358
+ Base class for the endpoint info classes.
359
+ """
360
+
361
+ underlying: EndpointInfo | None
362
+ """The information of the underlying endpoint or ``None`` if there's no underlying endpoint."""
363
+
364
+ compress: bool
365
+ """Specifies whether or not compression should be used if available when using this endpoint."""
366
+
367
+ def type(self) -> int:
368
+ """
369
+ Returns the type of the endpoint.
370
+
371
+ Returns
372
+ -------
373
+ int
374
+ The endpoint type.
375
+ """
376
+ ...
377
+
378
+ def datagram(self) -> bool:
379
+ """
380
+ Returns whether this endpoint is a datagram endpoint (namely, UDP).
381
+
382
+ Returns
383
+ -------
384
+ bool
385
+ ``True`` for a UDP endpoint, ``False`` otherwise.
386
+ """
387
+ ...
388
+
389
+ def secure(self) -> bool:
390
+ """
391
+ Returns whether this endpoint uses SSL.
392
+
393
+ Returns
394
+ -------
395
+ bool
396
+ ``True`` for SSL and SSL-based transports, ``False`` otherwise.
397
+ """
398
+ ...
399
+
400
+ class ExceptionInfo: ...
401
+ class ExecutorCall: ...
402
+
403
+ class IPConnectionInfo(ConnectionInfo):
404
+ """Provides access to the connection details of an IP connection."""
405
+
406
+ localAddress: str
407
+ """str: The local address."""
408
+
409
+ localPort: int
410
+ """int: The local port."""
411
+
412
+ remoteAddress: str
413
+ """str: The remote address."""
414
+
415
+ remotePort: int
416
+ """int: The remote port."""
417
+
418
+ class IPEndpointInfo(EndpointInfo):
419
+ """Provides access to the address details of an IP endpoint."""
420
+
421
+ host: str
422
+ """str: The host or address configured with the endpoint."""
423
+
424
+ port: int
425
+ """int: The port number."""
426
+
427
+ sourceAddress: str
428
+ """str: The source IP address."""
429
+
430
+ class ImplicitContext:
431
+ def containsKey(self, key: str) -> bool: ...
432
+ def get(self, key: str) -> str: ...
433
+ def getContext(self) -> dict[str, str]: ...
434
+ def put(self, key: str, value: str) -> str | None: ...
435
+ def remove(self, key: str) -> str | None: ...
436
+ def setContext(self, newContext: dict[str, str]) -> None: ...
437
+ def __eq__(self, other: object) -> bool: ...
438
+ def __ge__(self, other: object) -> bool: ...
439
+ def __gt__(self, other: object) -> bool: ...
440
+ def __le__(self, other: object) -> bool: ...
441
+ def __lt__(self, other: object) -> bool: ...
442
+ def __ne__(self, other: object) -> bool: ...
443
+
444
+ class Logger:
445
+ def cloneWithPrefix(self, prefix: str) -> Logger: ...
446
+ def error(self, message: str) -> None: ...
447
+ def getPrefix(self) -> str: ...
448
+ def print(self, message: str) -> None: ...
449
+ def trace(self, category: str, message: str) -> None: ...
450
+ def warning(self, message: str) -> None: ...
451
+
452
+ class NativePropertiesAdmin:
453
+ """
454
+ The default implementation of the 'Properties' admin facet.
455
+ """
456
+
457
+ def addUpdateCallback(self, callback: Callable[[dict[str, str]], None]) -> None:
458
+ """
459
+ Registers an update callback that will be invoked when a property update occurs.
460
+
461
+ Parameters
462
+ ----------
463
+ callback : Callable[[dict[str, str]], None]
464
+ The callback.
465
+ """
466
+ ...
467
+
468
+ def removeUpdateCallback(self, callback: Callable[[dict[str, str]], None]) -> None:
469
+ """
470
+ Removes a previously registered update callback.
471
+
472
+ Parameters
473
+ ----------
474
+ callback : Callable[[dict[str, str]], None]
475
+ The callback to remove.
476
+ """
477
+ ...
478
+
479
+ class ObjectAdapter:
480
+ def activate(self) -> None: ...
481
+ def add(self, servant: Ice.Object, id: Ice.Identity) -> Ice.ObjectPrx: ...
482
+ def addDefaultServant(self, servant: Ice.Object, category: str) -> None: ...
483
+ def addFacet(self, servant: Ice.Object, id: Ice.Identity, facet: str) -> Ice.ObjectPrx: ...
484
+ def addFacetWithUUID(self, servant: Ice.Object, facet: str) -> Ice.ObjectPrx: ...
485
+ def addServantLocator(self, locator: Ice.ServantLocator, category: str) -> None: ...
486
+ def addWithUUID(self, servant: Ice.Object) -> Ice.ObjectPrx: ...
487
+ def createDirectProxy(self, identity: Ice.Identity) -> Ice.ObjectPrx: ...
488
+ def createIndirectProxy(self, identity: Ice.Identity) -> Ice.ObjectPrx: ...
489
+ def createProxy(self, identity: Ice.Identity) -> Ice.ObjectPrx: ...
490
+ def deactivate(self) -> None: ...
491
+ def destroy(self) -> None: ...
492
+ def find(self, identity: Ice.Identity) -> Ice.Object | None: ...
493
+ def findAllFacets(self, id: Ice.Identity) -> dict[str, Ice.Object]: ...
494
+ def findByProxy(self, proxy: Ice.ObjectPrx) -> Ice.Object | None: ...
495
+ def findDefaultServant(self, category: str) -> Ice.Object | None: ...
496
+ def findFacet(self, id: Ice.Identity, facet: str) -> Ice.Object | None: ...
497
+ def findServantLocator(self, category: str) -> Ice.ServantLocator | None: ...
498
+ def getCommunicator(self) -> Communicator: ...
499
+ def getEndpoints(self) -> tuple[Endpoint, ...]: ...
500
+ def getLocator(self) -> Ice.LocatorPrx: ...
501
+ def getName(self) -> str: ...
502
+ def getPublishedEndpoints(self) -> tuple[Endpoint, ...]: ...
503
+ def hold(self) -> None: ...
504
+ def isDeactivated(self) -> bool: ...
505
+ def remove(self, id: Ice.Identity) -> Ice.Object: ...
506
+ def removeAllFacets(self, id: Ice.Identity) -> dict[str, Ice.Object]: ...
507
+ def removeDefaultServant(self, category: str) -> Ice.Object: ...
508
+ def removeFacet(self, id: Ice.Identity, facet: str) -> Ice.Object: ...
509
+ def removeServantLocator(self, category: str) -> Ice.ServantLocator: ...
510
+ def setLocator(self, locator: Ice.LocatorPrx) -> None: ...
511
+ def setPublishedEndpoints(self, newEndpoints: tuple[Endpoint, ...] | list[Endpoint]) -> None: ...
512
+ def waitForDeactivate(self, timeout: int) -> bool: ...
513
+ def waitForHold(self, timeout: int) -> None: ...
514
+
515
+ class ObjectPrx:
516
+ def __init__(self, communicator: Ice.Communicator, endpoint: str) -> None: ...
517
+ def ice_adapterId(self, newAdapterId: str) -> Self: ...
518
+ def ice_batchDatagram(self) -> Self: ...
519
+ def ice_batchOneway(self) -> Self: ...
520
+ def ice_collocationOptimized(self, collocated: bool) -> Self: ...
521
+ def ice_compress(self, compress: bool) -> Self: ...
522
+ def ice_connectionCached(self, newCache: bool) -> Self: ...
523
+ def ice_connectionId(self, connectionId: str) -> Self: ...
524
+ def ice_context(self, new_context: dict[str, str]) -> Self: ...
525
+ def ice_datagram(self) -> Self: ...
526
+ def ice_encodingVersion(self, version: Ice.EncodingVersion) -> Self: ...
527
+ def ice_endpointSelection(self, newType: Ice.EndpointSelectionType) -> Self: ...
528
+ def ice_endpoints(self, newEndpoints: tuple[Endpoint, ...] | list[Endpoint]) -> Self: ...
529
+ def ice_facet(self, new_facet: str) -> Self: ...
530
+ def ice_fixed(self, connection: Ice.Connection) -> Self: ...
531
+ def ice_flushBatchRequests(self) -> None: ...
532
+ def ice_flushBatchRequestsAsync(self) -> Awaitable[None]: ...
533
+ def ice_getAdapterId(self) -> str: ...
534
+ def ice_getCachedConnection(self) -> Ice.Connection | None: ...
535
+ def ice_getCommunicator(self) -> Ice.Communicator: ...
536
+ def ice_getCompress(self) -> bool | None: ...
537
+ def ice_getConnection(self) -> Ice.Connection | None: ...
538
+ def ice_getConnectionAsync(self) -> Awaitable[Ice.Connection | None]: ...
539
+ def ice_getConnectionId(self) -> str: ...
540
+ def ice_getContext(self) -> dict[str, str] | None: ...
541
+ def ice_getEncodingVersion(self) -> Ice.EncodingVersion: ...
542
+ def ice_getEndpointSelection(self) -> Ice.EndpointSelectionType: ...
543
+ def ice_getEndpoints(self) -> tuple[Endpoint, ...]: ...
544
+ def ice_getFacet(self) -> str: ...
545
+ def ice_getIdentity(self) -> Ice.Identity: ...
546
+ def ice_getInvocationTimeout(self) -> int: ...
547
+ def ice_getLocator(self) -> Ice.LocatorPrx | None: ...
548
+ def ice_getLocatorCacheTimeout(self) -> int: ...
549
+ def ice_getRouter(self) -> Ice.RouterPrx | None: ...
550
+ def ice_identity(self, newIdentity: Ice.Identity) -> Self: ...
551
+ def ice_invocationTimeout(self, timeout: int) -> Self: ...
552
+ def ice_invoke(
553
+ self, operation: str, mode: Ice.OperationMode, inParams: bytes, ctx: dict[str, str] | None
554
+ ) -> tuple[bool, bytes]: ...
555
+ def ice_invokeAsync(
556
+ self, operation: str, mode: Ice.OperationMode, inParams: bytes, ctx: dict[str, str] | None
557
+ ) -> Awaitable[tuple[bool, bytes]]: ...
558
+ def ice_isBatchDatagram(self) -> bool: ...
559
+ def ice_isBatchOneway(self) -> bool: ...
560
+ def ice_isCollocationOptimized(self) -> bool: ...
561
+ def ice_isConnectionCached(self) -> bool: ...
562
+ def ice_isDatagram(self) -> bool: ...
563
+ def ice_isFixed(self) -> bool: ...
564
+ def ice_isOneway(self) -> bool: ...
565
+ def ice_isTwoway(self) -> bool: ...
566
+ def ice_locator(self, locator: Ice.LocatorPrx | None) -> Self: ...
567
+ def ice_locatorCacheTimeout(self, timeout: int) -> Self: ...
568
+ def ice_oneway(self) -> Self: ...
569
+ def ice_router(self, router: Ice.RouterPrx | None) -> Self: ...
570
+ def ice_toString(self) -> str: ...
571
+ def ice_twoway(self) -> Self: ...
572
+ @staticmethod
573
+ def newProxy(type: Type[T], proxy: Ice.ObjectPrx) -> T: ...
574
+ def __eq__(self, other: object) -> bool: ...
575
+ def __ge__(self, other: object) -> bool: ...
576
+ def __gt__(self, other: object) -> bool: ...
577
+ def __hash__(self) -> int: ...
578
+ def __le__(self, other: object) -> bool: ...
579
+ def __lt__(self, other: object) -> bool: ...
580
+ def __ne__(self, other: object) -> bool: ...
581
+
582
+ class OpaqueEndpointInfo(EndpointInfo):
583
+ """Provides access to the details of an opaque endpoint."""
584
+
585
+ rawBytes: bytes
586
+ """bytes: The raw encoding of the opaque endpoint."""
587
+
588
+ rawEncoding: Ice.EncodingVersion
589
+ """Ice.EncodingVersion: The encoding version of the opaque endpoint (to decode or encode the ``rawBytes``)."""
590
+
591
+ class Operation:
592
+ def __init__(
593
+ self,
594
+ name: str,
595
+ ice_name: str,
596
+ mode: Any,
597
+ format: Any,
598
+ input_params: tuple,
599
+ output_params: tuple,
600
+ return_value: tuple,
601
+ return_type: Any,
602
+ exceptions: tuple,
603
+ ) -> None: ...
604
+ def invoke(self, proxy: ObjectPrx, args: tuple) -> Any: ...
605
+ def invokeAsync(self, proxy: ObjectPrx, args: tuple) -> Awaitable[Any]: ...
606
+ def deprecate(self, reason: str): ...
607
+
608
+ class Properties:
609
+ def getProperty(self, key: str) -> str: ...
610
+ def getIceProperty(self, key: str) -> str: ...
611
+ def getPropertyWithDefault(self, key: str, value: str) -> str: ...
612
+ def getPropertyAsInt(self, key: str) -> int: ...
613
+ def getIcePropertyAsInt(self, key: str) -> int: ...
614
+ def getPropertyAsIntWithDefault(self, key: str, value: int) -> int: ...
615
+ def getPropertyAsList(self, key: str) -> list[str]: ...
616
+ def getIcePropertyAsList(self, key: str) -> list[str]: ...
617
+ def getPropertyAsListWithDefault(self, key: str, value: list[str]) -> list[str]: ...
618
+ def getPropertiesForPrefix(self, prefix: str) -> dict[str, str]: ...
619
+ def setProperty(self, key: str, value: str) -> None: ...
620
+ def getCommandLineOptions(self) -> list[str]: ...
621
+ def parseCommandLineOptions(self, prefix: str, options: list[str]) -> list[str]: ...
622
+ def parseIceCommandLineOptions(self, options: list[str]) -> list[str]: ...
623
+ def load(self, file: str) -> None: ...
624
+ def clone(self) -> Properties: ...
625
+
626
+ class SSLConnectionInfo(ConnectionInfo):
627
+ """Provides access to the connection details of an SSL connection."""
628
+
629
+ peerCertificate: str
630
+ """str: The certificate chain."""
631
+
632
+ class SSLEndpointInfo(EndpointInfo):
633
+ """Provides access to an SSL endpoint information."""
634
+
635
+ ...
636
+
637
+ class TCPConnectionInfo(IPConnectionInfo):
638
+ """Provides access to the connection details of a TCP connection."""
639
+
640
+ rcvSize: int
641
+ """int: The size of the receive buffer."""
642
+
643
+ sndSize: int
644
+ """int: The size of the send buffer."""
645
+
646
+ class TCPEndpointInfo(IPEndpointInfo):
647
+ """Provides access to a TCP endpoint information."""
648
+
649
+ ...
650
+
651
+ class UDPConnectionInfo(IPConnectionInfo):
652
+ """Provides access to the connection details of a UDP connection."""
653
+
654
+ mcastAddress: str
655
+ """str: The multicast address."""
656
+
657
+ mcastPort: int
658
+ """int: The multicast port."""
659
+
660
+ rcvSize: int
661
+ """int: The size of the receive buffer."""
662
+
663
+ sndSize: int
664
+ """int: The size of the send buffer."""
665
+
666
+ class UDPEndpointInfo(IPEndpointInfo):
667
+ """Provides access to a UDP endpoint information."""
668
+
669
+ mcastInterface: str
670
+ """str: The multicast interface."""
671
+
672
+ mcastTtl: int
673
+ """int: The multicast time-to-live (or hops)."""
674
+
675
+ class WSConnectionInfo(ConnectionInfo):
676
+ """Provides access to the connection details of a WebSocket connection."""
677
+
678
+ headers: dict[str, str]
679
+ """dict[str, str]: The headers from the HTTP upgrade request."""
680
+
681
+ class WSEndpointInfo(EndpointInfo):
682
+ """Provides access to a WebSocket endpoint information."""
683
+
684
+ resource: str
685
+ """str: The URI configured with the endpoint."""
686
+
687
+ def stringVersion() -> str: ...
688
+ def intVersion() -> int: ...
689
+ def createProperties(args: list[str] | None = None, defaults: Ice.Properties | None = None) -> Properties: ...
690
+ def stringToIdentity(str: str) -> Ice.Identity: ...
691
+ def identityToString(identity: Ice.Identity, toStringMode: Ice.ToStringMode | None = None) -> str: ...
692
+ def getProcessLogger() -> Ice.Logger: ...
693
+ def setProcessLogger(logger: Ice.Logger) -> None: ...
694
+
695
+ #
696
+ # Functions to load/compile Slice definitions with 'slice2py'.
697
+ #
698
+ def loadSlice(args: list[str]) -> None: ...
699
+ def compileSlice(args: list[str]) -> int: ...
700
+
701
+ #
702
+ # Internal API for IcePy
703
+ #
704
+ def declareProxy(sliceId: str): ...
705
+ def defineProxy(
706
+ sliceId: str,
707
+ proxyType: Type[ObjectPrx],
708
+ ): ...
709
+ def declareValue(sliceId: str): ...
710
+ def defineValue(
711
+ sliceId: str,
712
+ valueType: Type[Ice.Value],
713
+ compactId: int,
714
+ meta: tuple,
715
+ isInterface: bool,
716
+ baseType: Type[Ice.Value] | None,
717
+ members: tuple,
718
+ ): ...
719
+ def defineDictionary(sliceId: str, meta: tuple, keyType: TypeInfo, valueType: TypeInfo): ...
720
+ def defineEnum(sliceId: str, type: Type, meta: tuple, enumerators: dict): ...
721
+ def defineException(
722
+ sliceId: str, type: Type[BaseException], meta: tuple, base: Type[BaseException] | None, members: tuple
723
+ ): ...
724
+ def defineSequence(sliceId: str, meta: tuple, elementType: TypeInfo): ...
725
+ def defineStruct(sliceId: str, type: Type, meta: tuple, members: tuple): ...
726
+
727
+ class TypeInfo: ...
728
+
729
+ _t_string: TypeInfo
730
+ _t_short: TypeInfo
731
+ _t_bool: TypeInfo
732
+ _t_int: TypeInfo
733
+ _t_long: TypeInfo
734
+ _t_byte: TypeInfo
735
+ _t_double: TypeInfo
736
+ _t_float: TypeInfo
737
+ _t_UnknownSlicedValue: TypeInfo
738
+ _t_ObjectPrx: TypeInfo
739
+ _t_Value: TypeInfo