Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Query.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", "js:ice-build"]]
13 [["cpp:include:IceGrid/Config.h"]]
14 
15 #include <Ice/Identity.ice>
16 #include <Ice/BuiltinSequences.ice>
17 
18 #include <IceGrid/Exception.ice>
19 
27 ["objc:prefix:ICEGRID"]
28 module IceGrid
29 {
30 
37 {
42 
47 
52 };
53 
60 interface Query
61 {
71  ["nonmutating", "cpp:const"] idempotent Object* findObjectById(Ice::Identity id);
72 
84  ["nonmutating", "cpp:const"] idempotent Object* findObjectByType(string type);
85 
101  ["nonmutating", "cpp:const"] idempotent Object* findObjectByTypeOnLeastLoadedNode(string type, LoadSample sample);
102 
113  ["nonmutating", "cpp:const"] idempotent Ice::ObjectProxySeq findAllObjectsByType(string type);
114 
127  ["cpp:const"] idempotent Ice::ObjectProxySeq findAllReplicas(Object* proxy);
128 };
129 
130 };
131 
LoadSample
Determines which load sampling interval to use.
Definition: Query.ice:36
sequence< Object > ObjectProxySeq
A sequence of object proxies.
Definition: BuiltinSequences.ice:46
Sample every fifteen minutes.
Definition: Query.ice:51
Sample every minute.
Definition: Query.ice:41
The identity of an Ice object.
Definition: Identity.ice:28
Sample every five minutes.
Definition: Query.ice:46
IceGrid is a server activation and deployment tool.
Definition: Admin.ice:24
The IceGrid query interface.
Definition: Query.ice:60