Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Communicator.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc"]]
13 
14 #include <Ice/LoggerF.ice>
15 #include <Ice/InstrumentationF.ice>
16 #include <Ice/ObjectAdapterF.ice>
17 #include <Ice/ObjectFactoryF.ice>
18 #include <Ice/RouterF.ice>
19 #include <Ice/LocatorF.ice>
20 #include <Ice/PluginF.ice>
21 #include <Ice/ImplicitContextF.ice>
22 #include <Ice/Current.ice>
23 #include <Ice/Properties.ice>
24 #include <Ice/FacetMap.ice>
25 
35 ["objc:prefix:ICE"]
36 module Ice
37 {
38 
51 ["clr:implements:_System.IDisposable"]
52 local interface Communicator
53 {
65  void destroy();
66 
84  void shutdown();
85 
105  void waitForShutdown();
106 
116  ["cpp:const"] bool isShutdown();
117 
137  ["cpp:const"] Object* stringToProxy(string str);
138 
151  ["cpp:const"] string proxyToString(Object* obj);
152 
169  ["cpp:const"] Object* propertyToProxy(string property);
170 
182  ["cpp:const"] PropertyDict proxyToProperty(Object* proxy, string property);
183 
196  ["cpp:const"] Identity stringToIdentity(string str);
197 
209  ["cpp:const"] string identityToString(Identity ident);
210 
233  ObjectAdapter createObjectAdapter(string name);
234 
256  ObjectAdapter createObjectAdapterWithEndpoints(string name, string endpoints);
257 
277  ObjectAdapter createObjectAdapterWithRouter(string name, ["objc:param:router"] Router* rtr);
278 
327  void addObjectFactory(ObjectFactory factory, ["objc:param:sliceId"] string id);
328 
343  ["cpp:const"] ObjectFactory findObjectFactory(string id);
344 
353  ["cpp:const"] ImplicitContext getImplicitContext();
354 
364  ["cpp:const"] Properties getProperties();
365 
375  ["cpp:const"] Logger getLogger();
376 
384  ["cpp:const"] Ice::Instrumentation::CommunicatorObserver getObserver();
385 
396  ["cpp:const"] Router* getDefaultRouter();
397 
415  void setDefaultRouter(Router* rtr);
416 
427  ["cpp:const"] Locator* getDefaultLocator();
428 
448  void setDefaultLocator(Locator* loc);
449 
459  ["cpp:const"] PluginManager getPluginManager();
460 
469  ["async"] void flushBatchRequests();
470 
490  Object* createAdmin(ObjectAdapter adminAdapter, Identity adminId);
491 
509  ["cpp:const"] Object* getAdmin();
510 
521  void addAdminFacet(Object servant, string facet);
522 
533  Object removeAdminFacet(string facet);
534 
544  Object findAdminFacet(string facet);
545 
556  FacetMap findAllAdminFacets();
557 };
558 
559 };
The Ice core library.
Definition: BuiltinSequences.ice:15
An interface to associate implict contexts with communicators.
Definition: ImplicitContext.ice:47
The Ice locator interface.
Definition: Locator.ice:83
The identity of an Ice object.
Definition: Identity.ice:28
The Ice router interface.
Definition: Router.ice:27
The central object in Ice.
Definition: Communicator.ice:52
dictionary< string, string > PropertyDict
A simple collection of properties, represented as a dictionary of key/value pairs.
Definition: PropertiesAdmin.ice:28
local dictionary< string, Object > FacetMap
A mapping from facet name to servant.
Definition: FacetMap.ice:23
A property set used to configure Ice and Ice applications.
Definition: Properties.ice:28
A factory for objects.
Definition: ObjectFactory.ice:27
The Ice message logger.
Definition: Logger.ice:24
Each communicator has a plug-in manager to administer the set of plug-ins.
Definition: Plugin.ice:55
The communicator observer interface used by the Ice run-time to obtain and update observers for its o...
Definition: Instrumentation.ice:375
The object adapter provides an up-call interface from the Ice run time to the implementation of Ice o...
Definition: ObjectAdapter.ice:38