Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
PluginFacade.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 [["cpp:include:IceGrid/Config.h"]]
14 
15 #include <Ice/BuiltinSequences.ice>
16 #include <Ice/Current.ice>
17 
18 #include <IceGrid/Admin.ice>
19 
20 ["objc:prefix:ICEGRID"]
21 module IceGrid
22 {
23 
34 local interface ReplicaGroupFilter
35 {
53  Ice::StringSeq filter(string replicaGroupId, Ice::StringSeq adapterIds, Ice::Connection con, Ice::Context ctx);
54 };
55 
67 local interface TypeFilter
68 {
86  Ice::ObjectProxySeq filter(string type, Ice::ObjectProxySeq proxies, Ice::Connection con, Ice::Context ctx);
87 };
88 
89 
98 local interface RegistryPluginFacade
99 {
112  ["nonmutating", "cpp:const"] idempotent ApplicationInfo getApplicationInfo(string name)
114 
126  ["nonmutating", "cpp:const"] idempotent ServerInfo getServerInfo(string id)
128 
143  ["nonmutating", "cpp:const"] idempotent string getAdapterServer(string adapterId)
145 
160  ["nonmutating", "cpp:const"] idempotent string getAdapterApplication(string adapterId)
162 
177  ["nonmutating", "cpp:const"] idempotent string getAdapterNode(string adapterId)
179 
197  ["nonmutating", "cpp:const"] idempotent AdapterInfoSeq getAdapterInfo(string id)
199 
212  ["nonmutating", "cpp:const"] idempotent ObjectInfo getObjectInfo(Ice::Identity id)
214 
229  ["nonmutating", "cpp:const"] idempotent NodeInfo getNodeInfo(string name)
231 
246  ["nonmutating", "cpp:const"] idempotent LoadInfo getNodeLoad(string name)
248 
262  ["nonmutating", "cpp:const"] idempotent string getPropertyForAdapter(string adapterId, string name)
264 
277  void addReplicaGroupFilter(string id, ReplicaGroupFilter filter);
278 
290  bool removeReplicaGroupFilter(string id, ReplicaGroupFilter filter);
291 
301  void addTypeFilter(string type, TypeFilter filter);
302 
314  bool removeTypeFilter(string type, TypeFilter filter);
315 };
316 
317 };
The RegistryPluginFacade is implemented by IceGrid and can be used by plugins and filter implementati...
Definition: PluginFacade.ice:98
The ReplicaGroupFilter is used by IceGrid to filter adapters returned to the client when it resolves ...
Definition: PluginFacade.ice:34
sequence< Object > ObjectProxySeq
A sequence of object proxies.
Definition: BuiltinSequences.ice:46
This exception is raised if a node could not be reached.
Definition: Exception.ice:191
Information about a server managed by an IceGrid node.
Definition: Admin.ice:168
This exception is raised if an adapter does not exist.
Definition: Exception.ice:101
The identity of an Ice object.
Definition: Identity.ice:28
The user-level interface to a connection.
Definition: Connection.ice:151
Information about the load of a node.
Definition: Admin.ice:315
Information about an IceGrid node.
Definition: Admin.ice:218
Information about an IceGrid application.
Definition: Admin.ice:332
This exception is raised if an object is not registered.
Definition: Exception.ice:131
IceGrid is a server activation and deployment tool.
Definition: Admin.ice:24
sequence< AdapterInfo > AdapterInfoSeq
A sequence of adapter information structures.
Definition: Admin.ice:161
Information about an Ice object.
Definition: Admin.ice:101
sequence< string > StringSeq
A sequence of strings.
Definition: BuiltinSequences.ice:40
This exception is raised if a server does not exist.
Definition: Exception.ice:42
This exception is raised if an application does not exist.
Definition: Exception.ice:27
The TypeFilter is used by IceGrid to filter well-known proxies returned to the client when it searche...
Definition: PluginFacade.ice:67
This exception is raised if a node does not exist.
Definition: Exception.ice:146
dictionary< string, string > Context
A request context.
Definition: Current.ice:31