Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
IceStorm.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:IceStorm/Config.h"]]
14 
15 #include <Ice/Identity.ice>
17 
18 #include <IceStorm/Metrics.ice>
19 
28 ["objc:prefix:ICESTORM"]
29 module IceStorm
30 {
31 
32 interface Topic;
33 
39 struct LinkInfo
40 {
47 
53  string name;
54 
60  int cost;
61 };
62 
68 sequence<LinkInfo> LinkInfoSeq;
69 
77 dictionary<string, string> QoS;
78 
85 exception LinkExists
86 {
92  string name;
93 };
94 
101 exception NoSuchLink
102 {
108  string name;
109 };
110 
118 {
119 };
120 
128 {
134  string reason;
135 };
136 
143 exception BadQoS
144 {
150  string reason;
151 };
152 
161 interface Topic
162 {
172  ["nonmutating", "cpp:const"] idempotent string getName();
173 
185  ["nonmutating", "cpp:const"] idempotent Object* getPublisher();
186 
197  ["nonmutating", "cpp:const"] idempotent Object* getNonReplicatedPublisher();
198 
222  Object* subscribeAndGetPublisher(QoS theQoS, Object* subscriber)
224 
234  idempotent void unsubscribe(Object* subscriber);
235 
249  void link(Topic* linkTo, int cost) throws LinkExists;
250 
260  void unlink(Topic* linkTo) throws NoSuchLink;
261 
269  ["nonmutating", "cpp:const"] idempotent LinkInfoSeq getLinkInfoSeq();
270 
278  ["nonmutating", "cpp:const"] Ice::IdentitySeq getSubscribers();
279 
285  void destroy();
286 };
287 
293 dictionary<string, Topic*> TopicDict;
294 
301 exception TopicExists
302 {
308  string name;
309 };
310 
317 exception NoSuchTopic
318 {
324  string name;
325 };
326 
334 interface TopicManager
335 {
348  Topic* create(string name) throws TopicExists;
349 
361  ["nonmutating", "cpp:const"] idempotent Topic* retrieve(string name) throws NoSuchTopic;
362 
370  ["nonmutating", "cpp:const"] idempotent TopicDict retrieveAll();
371 
379  ["nonmutating", "cpp:const"] idempotent Ice::SliceChecksumDict getSliceChecksums();
380 };
381 
390 interface Finder
391 {
400  TopicManager* getTopicManager();
401 };
402 
403 };
404 
int cost
The cost of traversing this link.
Definition: IceStorm.ice:60
This exception indicates that an attempt was made to subscribe a proxy that is null.
Definition: IceStorm.ice:127
This exception indicates that an attempt was made to subscribe a proxy for which a subscription alrea...
Definition: IceStorm.ice:117
string name
The name of the linked topic.
Definition: IceStorm.ice:53
Topic * theTopic
The linked topic.
Definition: IceStorm.ice:46
This exception indicates that a subscription failed due to an invalid QoS.
Definition: IceStorm.ice:143
string reason
The reason for the failure.
Definition: IceStorm.ice:150
string name
The name of the topic that does not exist.
Definition: IceStorm.ice:324
string reason
The reason for the failure.
Definition: IceStorm.ice:134
This exception indicates that an attempt was made to retrieve a topic that does not exist...
Definition: IceStorm.ice:317
dictionary< string, Topic > TopicDict
Mapping of topic name to topic proxy.
Definition: IceStorm.ice:293
string name
The name of the topic that already exists.
Definition: IceStorm.ice:308
This exception indicates that an attempt was made to create a link that already exists.
Definition: IceStorm.ice:85
Publishers publish information on a particular topic.
Definition: IceStorm.ice:161
dictionary< string, string > QoS
This dictionary represents quality of service parameters.
Definition: IceStorm.ice:77
Information on the topic links.
Definition: IceStorm.ice:39
A messaging service with support for federation.
Definition: IceStorm.ice:29
sequence< LinkInfo > LinkInfoSeq
A sequence of LinkInfo objects.
Definition: IceStorm.ice:68
This inferface is advertised by the IceStorm service through the Ice object with the identity `IceSto...
Definition: IceStorm.ice:390
A topic manager manages topics, and subscribers to topics.
Definition: IceStorm.ice:334
dictionary< string, string > SliceChecksumDict
A mapping from type IDs to Slice checksums.
Definition: SliceChecksumDict.ice:23
string name
The name of the linked topic.
Definition: IceStorm.ice:92
sequence< Identity > IdentitySeq
A sequence of identities.
Definition: Identity.ice:57
This exception indicates that an attempt was made to create a topic that already exists.
Definition: IceStorm.ice:301