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
@@ -1,710 +0,0 @@
1
- //
2
- // Copyright (c) ZeroC, Inc. All rights reserved.
3
- //
4
-
5
- #pragma once
6
-
7
- [["cpp:dll-export:ICE_API"]]
8
- [["cpp:doxygen:include:Ice/Ice.h"]]
9
- [["cpp:header-ext:h"]]
10
-
11
- [["ice-prefix"]]
12
-
13
- [["js:module:ice"]]
14
- [["js:cjs-module"]]
15
-
16
- [["objc:dll-export:ICE_API"]]
17
- [["objc:header-dir:objc"]]
18
-
19
- [["python:pkgdir:Ice"]]
20
-
21
- #include <Ice/CommunicatorF.ice>
22
- #include <Ice/ServantLocatorF.ice>
23
- #include <Ice/Locator.ice>
24
- #include <Ice/Identity.ice>
25
- #include <Ice/FacetMap.ice>
26
- #include <Ice/Endpoint.ice>
27
-
28
- #ifndef __SLICE2JAVA_COMPAT__
29
- [["java:package:com.zeroc"]]
30
- #endif
31
-
32
- ["objc:prefix:ICE"]
33
- module Ice
34
- {
35
-
36
- /**
37
- *
38
- * The object adapter provides an up-call interface from the Ice
39
- * run time to the implementation of Ice objects.
40
- *
41
- * The object adapter is responsible for receiving requests
42
- * from endpoints, and for mapping between servants, identities, and
43
- * proxies.
44
- *
45
- * @see Communicator
46
- * @see ServantLocator
47
- *
48
- **/
49
- local interface ObjectAdapter
50
- {
51
- /**
52
- *
53
- * Get the name of this object adapter.
54
- *
55
- * @return This object adapter's name.
56
- *
57
- **/
58
- ["cpp:const", "cpp:noexcept", "swift:noexcept"] string getName();
59
-
60
- /**
61
- *
62
- * Get the communicator this object adapter belongs to.
63
- *
64
- * @return This object adapter's communicator.
65
- *
66
- * @see Communicator
67
- *
68
- **/
69
- ["cpp:const", "cpp:noexcept", "swift:noexcept", "swift:nonnull"] Communicator getCommunicator();
70
-
71
- /**
72
- *
73
- * Activate all endpoints that belong to this object adapter.
74
- * After activation, the object adapter can dispatch requests
75
- * received through its endpoints.
76
- *
77
- * @see #hold
78
- * @see #deactivate
79
- *
80
- **/
81
- ["js:async"] void activate();
82
-
83
- /**
84
- *
85
- * Temporarily hold receiving and dispatching requests. The object
86
- * adapter can be reactivated with the {@link #activate} operation.
87
- *
88
- * <p class="Note"> Holding is not immediate, i.e., after {@link #hold}
89
- * returns, the object adapter might still be active for some
90
- * time. You can use {@link #waitForHold} to wait until holding is
91
- * complete.
92
- *
93
- * @see #activate
94
- * @see #deactivate
95
- * @see #waitForHold
96
- *
97
- **/
98
- ["swift:noexcept"] void hold();
99
-
100
- /**
101
- *
102
- * Wait until the object adapter holds requests. Calling {@link #hold}
103
- * initiates holding of requests, and {@link #waitForHold} only returns
104
- * when holding of requests has been completed.
105
- *
106
- * @see #hold
107
- * @see #waitForDeactivate
108
- * @see Communicator#waitForShutdown
109
- *
110
- **/
111
- ["swift:noexcept", "js:async"] void waitForHold();
112
-
113
- /**
114
- *
115
- * Deactivate all endpoints that belong to this object adapter.
116
- * After deactivation, the object adapter stops receiving
117
- * requests through its endpoints. Object adapters that have been
118
- * deactivated must not be reactivated again, and cannot be used
119
- * otherwise. Attempts to use a deactivated object adapter raise
120
- * {@link ObjectAdapterDeactivatedException} however, attempts to
121
- * {@link #deactivate} an already deactivated object adapter are
122
- * ignored and do nothing. Once deactivated, it is possible to
123
- * destroy the adapter to clean up resources and then create and
124
- * activate a new adapter with the same name.
125
- *
126
- * <p class="Note"> After {@link #deactivate} returns, no new requests
127
- * are processed by the object adapter. However, requests that
128
- * have been started before {@link #deactivate} was called might
129
- * still be active. You can use {@link #waitForDeactivate} to wait
130
- * for the completion of all requests for this object adapter.
131
- *
132
- * @see #activate
133
- * @see #hold
134
- * @see #waitForDeactivate
135
- * @see Communicator#shutdown
136
- *
137
- **/
138
- ["cpp:noexcept", "swift:noexcept", "js:async"] void deactivate();
139
-
140
- /**
141
- *
142
- * Wait until the object adapter has deactivated. Calling
143
- * {@link #deactivate} initiates object adapter deactivation, and
144
- * {@link #waitForDeactivate} only returns when deactivation has
145
- * been completed.
146
- *
147
- * @see #deactivate
148
- * @see #waitForHold
149
- * @see Communicator#waitForShutdown
150
- *
151
- **/
152
- ["cpp:noexcept", "swift:noexcept", "js:async"] void waitForDeactivate();
153
-
154
- /**
155
- *
156
- * Check whether object adapter has been deactivated.
157
- *
158
- * @return Whether adapter has been deactivated.
159
- *
160
- * @see Communicator#shutdown
161
- *
162
- **/
163
- ["cpp:const", "cpp:noexcept", "swift:noexcept"] bool isDeactivated();
164
-
165
- /**
166
- *
167
- * Destroys the object adapter and cleans up all resources held by
168
- * the object adapter. If the object adapter has not yet been
169
- * deactivated, destroy implicitly initiates the deactivation
170
- * and waits for it to finish. Subsequent calls to destroy are
171
- * ignored. Once destroy has returned, it is possible to create
172
- * another object adapter with the same name.
173
- *
174
- * @see #deactivate
175
- * @see #waitForDeactivate
176
- * @see Communicator#destroy
177
- *
178
- **/
179
- ["cpp:noexcept", "swift:noexcept", "js:async"] void destroy();
180
-
181
- /**
182
- *
183
- * Add a servant to this object adapter's Active Servant Map. Note
184
- * that one servant can implement several Ice objects by registering
185
- * the servant with multiple identities. Adding a servant with an
186
- * identity that is in the map already throws {@link AlreadyRegisteredException}.
187
- *
188
- * @param servant The servant to add.
189
- *
190
- * @param id The identity of the Ice object that is implemented by
191
- * the servant.
192
- *
193
- * @return A proxy that matches the given identity and this object
194
- * adapter.
195
- *
196
- * @see Identity
197
- * @see #addFacet
198
- * @see #addWithUUID
199
- * @see #remove
200
- * @see #find
201
- *
202
- **/
203
- ["swift:nonnull", "swift:attribute:@discardableResult"]
204
- Object* add(["swift:nonnull"] Object servant, ["objc:param:identity"] Identity id);
205
-
206
- /**
207
- *
208
- * Like {@link #add}, but with a facet. Calling <code>add(servant, id)</code>
209
- * is equivalent to calling {@link #addFacet} with an empty facet.
210
- *
211
- * @param servant The servant to add.
212
- *
213
- * @param id The identity of the Ice object that is implemented by
214
- * the servant.
215
- *
216
- * @param facet The facet. An empty facet means the default facet.
217
- *
218
- * @return A proxy that matches the given identity, facet, and
219
- * this object adapter.
220
- *
221
- * @see Identity
222
- * @see #add
223
- * @see #addFacetWithUUID
224
- * @see #removeFacet
225
- * @see #findFacet
226
- *
227
- **/
228
- ["swift:nonnull", "swift:attribute:@discardableResult"]
229
- Object* addFacet(["swift:nonnull"] Object servant, ["objc:param:identity"] Identity id, string facet);
230
-
231
- /**
232
- *
233
- * Add a servant to this object adapter's Active Servant Map,
234
- * using an automatically generated UUID as its identity. Note that
235
- * the generated UUID identity can be accessed using the proxy's
236
- * <code>ice_getIdentity</code> operation.
237
- *
238
- * @param servant The servant to add.
239
- *
240
- * @return A proxy that matches the generated UUID identity and
241
- * this object adapter.
242
- *
243
- * @see Identity
244
- * @see #add
245
- * @see #addFacetWithUUID
246
- * @see #remove
247
- * @see #find
248
- *
249
- **/
250
- ["swift:nonnull", "swift:attribute:@discardableResult"] Object* addWithUUID(["swift:nonnull"] Object servant);
251
-
252
- /**
253
- *
254
- * Like {@link #addWithUUID}, but with a facet. Calling
255
- * <code>addWithUUID(servant)</code> is equivalent to calling
256
- * {@link #addFacetWithUUID} with an empty facet.
257
- *
258
- * @param servant The servant to add.
259
- *
260
- * @param facet The facet. An empty facet means the default
261
- * facet.
262
- *
263
- * @return A proxy that matches the generated UUID identity,
264
- * facet, and this object adapter.
265
- *
266
- * @see Identity
267
- * @see #addFacet
268
- * @see #addWithUUID
269
- * @see #removeFacet
270
- * @see #findFacet
271
- *
272
- **/
273
- ["swift:nonnull", "swift:attribute:@discardableResult"] Object* addFacetWithUUID(["swift:nonnull"] Object servant, string facet);
274
-
275
- /**
276
- *
277
- * Add a default servant to handle requests for a specific
278
- * category. Adding a default servant for a category for
279
- * which a default servant is already registered throws
280
- * {@link AlreadyRegisteredException}. To dispatch operation
281
- * calls on servants, the object adapter tries to find a servant
282
- * for a given Ice object identity and facet in the following
283
- * order:
284
- *
285
- * <ol>
286
- *
287
- * <li>The object adapter tries to find a servant for the identity
288
- * and facet in the Active Servant Map.</li>
289
- *
290
- * <li>If no servant has been found in the Active Servant Map, the
291
- * object adapter tries to find a default servant for the category
292
- * component of the identity.</li>
293
- *
294
- * <li>If no servant has been found by any of the preceding steps,
295
- * the object adapter tries to find a default servant for an empty
296
- * category, regardless of the category contained in the identity.</li>
297
- *
298
- * <li>If no servant has been found by any of the preceding steps,
299
- * the object adapter gives up and the caller receives
300
- * {@link ObjectNotExistException} or {@link FacetNotExistException}.</li>
301
- *
302
- * </ol>
303
- *
304
- * @param servant The default servant.
305
- *
306
- * @param category The category for which the default servant is
307
- * registered. An empty category means it will handle all categories.
308
- *
309
- * @see #removeDefaultServant
310
- * @see #findDefaultServant
311
- *
312
- **/
313
- void addDefaultServant(["swift:nonnull"] Object servant, string category);
314
-
315
- /**
316
- *
317
- * Remove a servant (that is, the default facet) from the object
318
- * adapter's Active Servant Map.
319
- *
320
- * @param id The identity of the Ice object that is implemented by
321
- * the servant. If the servant implements multiple Ice objects,
322
- * {@link #remove} has to be called for all those Ice objects.
323
- * Removing an identity that is not in the map throws
324
- * {@link NotRegisteredException}.
325
- *
326
- * @return The removed servant.
327
- *
328
- * @see Identity
329
- * @see #add
330
- * @see #addWithUUID
331
- *
332
- **/
333
- ["swift:nonnull", "swift:attribute:@discardableResult"] Object remove(Identity id);
334
-
335
- /**
336
- *
337
- * Like {@link #remove}, but with a facet. Calling <code>remove(id)</code>
338
- * is equivalent to calling {@link #removeFacet} with an empty facet.
339
- *
340
- * @param id The identity of the Ice object that is implemented by
341
- * the servant.
342
- *
343
- * @param facet The facet. An empty facet means the default facet.
344
- *
345
- * @return The removed servant.
346
- *
347
- * @see Identity
348
- * @see #addFacet
349
- * @see #addFacetWithUUID
350
- *
351
- **/
352
- ["swift:nonnull", "swift:attribute:@discardableResult"] Object removeFacet(Identity id, string facet);
353
-
354
- /**
355
- *
356
- * Remove all facets with the given identity from the Active
357
- * Servant Map. The operation completely removes the Ice object,
358
- * including its default facet. Removing an identity that
359
- * is not in the map throws {@link NotRegisteredException}.
360
- *
361
- * @param id The identity of the Ice object to be removed.
362
- *
363
- * @return A collection containing all the facet names and
364
- * servants of the removed Ice object.
365
- *
366
- * @see #remove
367
- * @see #removeFacet
368
- *
369
- **/
370
- ["swift:attribute:@discardableResult"] FacetMap removeAllFacets(Identity id);
371
-
372
- /**
373
- *
374
- * Remove the default servant for a specific category. Attempting
375
- * to remove a default servant for a category that is not
376
- * registered throws {@link NotRegisteredException}.
377
- *
378
- * @param category The category of the default servant to remove.
379
- *
380
- * @return The default servant.
381
- *
382
- * @see #addDefaultServant
383
- * @see #findDefaultServant
384
- *
385
- **/
386
- ["swift:nonnull", "swift:attribute:@discardableResult"] Object removeDefaultServant(string category);
387
-
388
- /**
389
- *
390
- * Look up a servant in this object adapter's Active Servant Map
391
- * by the identity of the Ice object it implements.
392
- *
393
- * <p class="Note">This operation only tries to look up a servant in
394
- * the Active Servant Map. It does not attempt to find a servant
395
- * by using any installed {@link ServantLocator}.
396
- *
397
- * @param id The identity of the Ice object for which the servant
398
- * should be returned.
399
- *
400
- * @return The servant that implements the Ice object with the
401
- * given identity, or null if no such servant has been found.
402
- *
403
- * @see Identity
404
- * @see #findFacet
405
- * @see #findByProxy
406
- *
407
- **/
408
- ["swift:noexcept", "cpp:const"] Object find(Identity id);
409
-
410
- /**
411
- *
412
- * Like {@link #find}, but with a facet. Calling <code>find(id)</code>
413
- * is equivalent to calling {@link #findFacet} with an empty
414
- * facet.
415
- *
416
- * @param id The identity of the Ice object for which the
417
- * servant should be returned.
418
- *
419
- * @param facet The facet. An empty facet means the default
420
- * facet.
421
- *
422
- * @return The servant that implements the Ice object with the
423
- * given identity and facet, or null if no such servant has been
424
- * found.
425
- *
426
- * @see Identity
427
- * @see #find
428
- * @see #findByProxy
429
- *
430
- **/
431
- ["swift:noexcept", "cpp:const"] Object findFacet(Identity id, string facet);
432
-
433
- /**
434
- *
435
- * Find all facets with the given identity in the Active Servant
436
- * Map.
437
- *
438
- * @param id The identity of the Ice object for which the facets
439
- * should be returned.
440
- *
441
- * @return A collection containing all the facet names and
442
- * servants that have been found, or an empty map if there is no
443
- * facet for the given identity.
444
- *
445
- * @see #find
446
- * @see #findFacet
447
- *
448
- **/
449
- ["swift:noexcept", "cpp:const"] FacetMap findAllFacets(Identity id);
450
-
451
- /**
452
- *
453
- * Look up a servant in this object adapter's Active Servant Map,
454
- * given a proxy.
455
- *
456
- * <p class="Note">This operation only tries to lookup a servant in
457
- * the Active Servant Map. It does not attempt to find a servant
458
- * by using any installed {@link ServantLocator}.
459
- *
460
- * @param proxy The proxy for which the servant should be returned.
461
- *
462
- * @return The servant that matches the proxy, or null if no such
463
- * servant has been found.
464
- *
465
- * @see #find
466
- * @see #findFacet
467
- *
468
- **/
469
- ["swift:noexcept", "cpp:const"] Object findByProxy(["swift:nonnull"] Object* proxy);
470
-
471
- /**
472
- *
473
- * Add a Servant Locator to this object adapter. Adding a servant
474
- * locator for a category for which a servant locator is already
475
- * registered throws {@link AlreadyRegisteredException}. To dispatch
476
- * operation calls on servants, the object adapter tries to find a
477
- * servant for a given Ice object identity and facet in the
478
- * following order:
479
- *
480
- * <ol>
481
- *
482
- * <li>The object adapter tries to find a servant for the identity
483
- * and facet in the Active Servant Map.</li>
484
- *
485
- * <li>If no servant has been found in the Active Servant Map,
486
- * the object adapter tries to find a servant locator for the
487
- * category component of the identity. If a locator is found, the
488
- * object adapter tries to find a servant using this locator.</li>
489
- *
490
- * <li>If no servant has been found by any of the preceding steps,
491
- * the object adapter tries to find a locator for an empty category,
492
- * regardless of the category contained in the identity. If a
493
- * locator is found, the object adapter tries to find a servant
494
- * using this locator.</li>
495
- *
496
- * <li>If no servant has been found by any of the preceding steps,
497
- * the object adapter gives up and the caller receives
498
- * {@link ObjectNotExistException} or {@link FacetNotExistException}.</li>
499
- *
500
- * </ol>
501
- *
502
- * <p class="Note">Only one locator for the empty category can be
503
- * installed.
504
- *
505
- * @param locator The locator to add.
506
- *
507
- * @param category The category for which the Servant Locator can
508
- * locate servants, or an empty string if the Servant Locator does
509
- * not belong to any specific category.
510
- *
511
- * @see Identity
512
- * @see #removeServantLocator
513
- * @see #findServantLocator
514
- * @see ServantLocator
515
- *
516
- **/
517
- void addServantLocator(["swift:nonnull"] ServantLocator locator, string category);
518
-
519
- /**
520
- *
521
- * Remove a Servant Locator from this object adapter.
522
- *
523
- * @param category The category for which the Servant Locator can
524
- * locate servants, or an empty string if the Servant Locator does
525
- * not belong to any specific category.
526
- *
527
- * @return The Servant Locator, or throws {@link NotRegisteredException}
528
- * if no Servant Locator was found for the given category.
529
- *
530
- * @see Identity
531
- * @see #addServantLocator
532
- * @see #findServantLocator
533
- * @see ServantLocator
534
- *
535
- **/
536
- ["swift:nonnull", "swift:attribute:@discardableResult"] ServantLocator removeServantLocator(string category);
537
-
538
- /**
539
- *
540
- * Find a Servant Locator installed with this object adapter.
541
- *
542
- * @param category The category for which the Servant Locator can
543
- * locate servants, or an empty string if the Servant Locator does
544
- * not belong to any specific category.
545
- *
546
- * @return The Servant Locator, or null if no Servant Locator was
547
- * found for the given category.
548
- *
549
- * @see Identity
550
- * @see #addServantLocator
551
- * @see #removeServantLocator
552
- * @see ServantLocator
553
- *
554
- **/
555
- ["swift:noexcept", "cpp:const"] ServantLocator findServantLocator(string category);
556
-
557
- /**
558
- *
559
- * Find the default servant for a specific category.
560
- *
561
- * @param category The category of the default servant to find.
562
- *
563
- * @return The default servant or null if no default servant was
564
- * registered for the category.
565
- *
566
- * @see #addDefaultServant
567
- * @see #removeDefaultServant
568
- *
569
- **/
570
- ["swift:noexcept", "cpp:const"] Object findDefaultServant(string category);
571
-
572
- /**
573
- *
574
- * Create a proxy for the object with the given identity. If this
575
- * object adapter is configured with an adapter id, the return
576
- * value is an indirect proxy that refers to the adapter id. If
577
- * a replica group id is also defined, the return value is an
578
- * indirect proxy that refers to the replica group id. Otherwise,
579
- * if no adapter id is defined, the return value is a direct
580
- * proxy containing this object adapter's published endpoints.
581
- *
582
- * @param id The object's identity.
583
- *
584
- * @return A proxy for the object with the given identity.
585
- *
586
- * @see Identity
587
- *
588
- **/
589
- ["cpp:const", "swift:nonnull"] Object* createProxy(Identity id);
590
-
591
- /**
592
- *
593
- * Create a direct proxy for the object with the given identity.
594
- * The returned proxy contains this object adapter's published
595
- * endpoints.
596
- *
597
- * @param id The object's identity.
598
- *
599
- * @return A proxy for the object with the given identity.
600
- *
601
- * @see Identity
602
- *
603
- **/
604
- ["cpp:const", "swift:nonnull"] Object* createDirectProxy(Identity id);
605
-
606
- /**
607
- *
608
- * Create an indirect proxy for the object with the given identity.
609
- * If this object adapter is configured with an adapter id, the
610
- * return value refers to the adapter id. Otherwise, the return
611
- * value contains only the object identity.
612
- *
613
- * @param id The object's identity.
614
- *
615
- * @return A proxy for the object with the given identity.
616
- *
617
- * @see Identity
618
- *
619
- **/
620
- ["cpp:const", "swift:nonnull"] Object* createIndirectProxy(Identity id);
621
-
622
- /**
623
- * Set an Ice locator for this object adapter. By doing so, the
624
- * object adapter will register itself with the locator registry
625
- * when it is activated for the first time. Furthermore, the proxies
626
- * created by this object adapter will contain the adapter identifier
627
- * instead of its endpoints. The adapter identifier must be configured
628
- * using the AdapterId property.
629
- *
630
- * @param loc The locator used by this object adapter.
631
- *
632
- * @see #createDirectProxy
633
- * @see Locator
634
- * @see LocatorRegistry
635
- *
636
- **/
637
- void setLocator(Locator* loc);
638
-
639
- /**
640
- * Get the Ice locator used by this object adapter.
641
- *
642
- * @return The locator used by this object adapter, or null if no locator is
643
- * used by this object adapter.
644
- *
645
- * @see Locator
646
- * @see #setLocator
647
- *
648
- **/
649
- ["cpp:const", "cpp:noexcept", "swift:noexcept"] Locator* getLocator();
650
-
651
- /**
652
- *
653
- * Get the set of endpoints configured with this object adapter.
654
- *
655
- * @return The set of endpoints.
656
- *
657
- * @see Endpoint
658
- *
659
- **/
660
- ["cpp:const", "cpp:noexcept", "swift:noexcept"] EndpointSeq getEndpoints();
661
-
662
- /**
663
- * Refresh the set of published endpoints. The run time re-reads
664
- * the PublishedEndpoints property if it is set and re-reads the
665
- * list of local interfaces if the adapter is configured to listen
666
- * on all endpoints. This operation is useful to refresh the endpoint
667
- * information that is published in the proxies that are created by
668
- * an object adapter if the network interfaces used by a host changes.
669
- *
670
- **/
671
- ["js:async"] void refreshPublishedEndpoints();
672
-
673
- /**
674
- *
675
- * Get the set of endpoints that proxies created by this object
676
- * adapter will contain.
677
- *
678
- * @return The set of published endpoints.
679
- *
680
- * @see #refreshPublishedEndpoints
681
- * @see Endpoint
682
- *
683
- **/
684
- ["cpp:const", "cpp:noexcept", "swift:noexcept"] EndpointSeq getPublishedEndpoints();
685
-
686
- /**
687
- *
688
- * Set of the endpoints that proxies created by this object
689
- * adapter will contain.
690
- *
691
- * @param newEndpoints The new set of endpoints that the object adapter will embed in proxies.
692
- *
693
- * @see #refreshPublishedEndpoints
694
- * @see Endpoint
695
- *
696
- **/
697
- void setPublishedEndpoints(EndpointSeq newEndpoints);
698
-
699
- #if defined(__SLICE2SWIFT__) || defined(ICE_SWIFT)
700
- /*
701
- * Returns the dispatch queue.
702
- *
703
- * @return The dispatch queue associated wih this Object Adapter.
704
- **/
705
- ["cpp:const", "swift:nonnull", "cpp:type:dispatch_queue_t", "swift:type:Dispatch.DispatchQueue"]
706
- LocalObject getDispatchQueue();
707
- #endif
708
- }
709
-
710
- }