interface Locator |
The Ice locator interface. This interface is used by clients to lookup adapters and objects. It is also used by servers to get the locator registry proxy.
![]() | The Locator interface is intended to be used by Ice internals and by locator implementations. Regular user code should not attempt to use any functionality of this interface directly. |
Find an adapter by id and return its proxy (a dummy direct proxy created by the adapter).
Find an object by identity and return its proxy.
Get the locator registry.
[ "amd" ] Object* findAdapterById(string id) throws AdapterNotFoundException; |
Find an adapter by id and return its proxy (a dummy direct proxy created by the adapter).
Raised if the adapter cannot be found.
[ "amd" ] Object* findObjectById(Identity id) throws ObjectNotFoundException; |
Find an object by identity and return its proxy.
Raised if the object cannot be found.
<<< Previous | Home | Next >>> |
Ice::IllegalMessageSizeException | Up | Ice::LocatorRegistry |