Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
IceDiscovery.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 [["cpp:header-ext:h", "objc:header-dir:objc"]]
12 
13 #include <Ice/Identity.ice>
14 
15 module IceDiscovery
16 {
17 
18 interface LookupReply
19 {
20  void foundObjectById(Ice::Identity id, Object* prx);
21 
22  void foundAdapterById(string id, Object* prx, bool isReplicaGroup);
23 };
24 
25 interface Lookup
26 {
27  idempotent void findObjectById(string domainId, Ice::Identity id, LookupReply* reply);
28 
29  idempotent void findAdapterById(string domainId, string id, LookupReply* reply);
30 };
31 
32 };
The identity of an Ice object.
Definition: Identity.ice:28
Definition: IceDiscovery.ice:15