Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
ObjectAdapter.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/CommunicatorF.ice>
15 #include <Ice/ServantLocatorF.ice>
16 #include <Ice/LocatorF.ice>
17 #include <Ice/Identity.ice>
18 #include <Ice/FacetMap.ice>
19 #include <Ice/Endpoint.ice>
20 
21 ["objc:prefix:ICE"]
22 module Ice
23 {
24 
38 local interface ObjectAdapter
39 {
47  ["cpp:const"] string getName();
48 
58  ["cpp:const"] Communicator getCommunicator();
59 
70  void activate();
71 
87  void hold();
88 
100  void waitForHold();
101 
127  void deactivate();
128 
141  void waitForDeactivate();
142 
152  ["cpp:const"] bool isDeactivated();
153 
168  void destroy();
169 
192  Object* add(Object servant, ["objc:param:identity"] Identity id);
193 
216  Object* addFacet(Object servant, ["objc:param:identity"] Identity id, string facet);
217 
237  Object* addWithUUID(Object servant);
238 
260  Object* addFacetWithUUID(Object servant, string facet);
261 
300  void addDefaultServant(Object servant, string category);
301 
320  Object remove(Identity id);
321 
339  Object removeFacet(Identity id, string facet);
340 
357  FacetMap removeAllFacets(Identity id);
358 
373  Object removeDefaultServant(string category);
374 
395  ["cpp:const"] Object find(Identity id);
396 
418  ["cpp:const"] Object findFacet(Identity id, string facet);
419 
436  ["cpp:const"] FacetMap findAllFacets(Identity id);
437 
456  ["cpp:const"] Object findByProxy(Object* proxy);
457 
504  void addServantLocator(ServantLocator locator, string category);
505 
523  ServantLocator removeServantLocator(string category);
524 
542  ["cpp:const"] ServantLocator findServantLocator(string category);
543 
557  ["cpp:const"] Object findDefaultServant(string category);
558 
576  ["cpp:const"] Object* createProxy(Identity id);
577 
591  ["cpp:const"] Object* createDirectProxy(Identity id);
592 
607  ["cpp:const"] Object* createIndirectProxy(Identity id);
608 
624  void setLocator(Locator* loc);
625 
636  ["cpp:const"] Locator* getLocator();
637 
647  void refreshPublishedEndpoints();
648 
658  ["cpp:const"] EndpointSeq getEndpoints();
659 
671  ["cpp:const"] EndpointSeq getPublishedEndpoints();
672 };
673 
674 };
The Ice core library.
Definition: BuiltinSequences.ice:15
local sequence< Endpoint > EndpointSeq
A sequence of endpoints.
Definition: EndpointF.ice:30
The Ice locator interface.
Definition: Locator.ice:83
The identity of an Ice object.
Definition: Identity.ice:28
The central object in Ice.
Definition: Communicator.ice:52
A servant locator is called by an object adapter to locate a servant that is not found in its active ...
Definition: ServantLocator.ice:31
local dictionary< string, Object > FacetMap
A mapping from facet name to servant.
Definition: FacetMap.ice:23
The object adapter provides an up-call interface from the Ice run time to the implementation of Ice o...
Definition: ObjectAdapter.ice:38