IceStrom Interface

来源:互联网 发布:vsftp centos怎么用 编辑:程序博客网 时间:2024/05/17 00:51

TopicManager
The TopicManager is a singleton object that acts as a factory and repository of
Topic objects. Its interface and related types are shown below:
module IceStorm {
dictionary<string, Topic*> TopicDict;
exception TopicExists {
string name;
};
exception NoSuchTopic {
string name;
};
interface TopicManager {
// create a new topic, which must have a unique name.
Topic* create(string name) throws TopicExists;
// allows a client to obtain a proxy for an existing topic
idempotent Topic* retrieve(string name) throws NoSuchTopic;
// supplies a dictionary of all existing topics.
idempotent TopicDict retrieveAll();
// returns Slice checksums for the IceStorm definitions
idempotent Ice::SliceChecksumDict getSliceChecksums();
};
};
Topic
The Topic interface represents a topic and provides several administrative operations
for configuring links and managing subscribers.
module IceStorm {
struct LinkInfo {
Topic* theTopic;
string name;
int cost;
};
sequence<LinkInfo> LinkInfoSeq;
dictionary<string, string> QoS;
exception LinkExists {
string name;
};
exception NoSuchLink {
string name;
};
exception AlreadySubscribed {};
exception BadQoS {
string reason;
};
interface Topic {
// returns the name assigned to the topic,
idempotent string getName();
// return proxies for the topic’s publisher object
idempotent Object* getPublisher();
idempotent Object* getNonReplicatedPublisher();
// adds a subscriber’s proxy to the topic;
// if another subscriber proxy already exists with the same object identity, the
// operation throws AlreadySubscribed.
// The operation returns the publisher for the topic
Object* subscribeAndGetPublisher(QoS theQoS, Object* subscriber) throws AlreadySubscribed, BadQoS;
// removes the subscriber from the topic.
idempotent void unsubscribe(Object* subscriber);
// A link to another topic is created using the link operation;
// if a link already exists to the given topic, the LinkExists exception is raised.
idempotent void link(Topic* linkTo, int cost) throws LinkExists;
// Links are destroyed using the unlink operation.
idempotent void unlink(Topic* linkTo) throws NoSuchLink;
idempotent LinkInfoSeq getLinkInfoSeq();
// destroy operation permanently destroys the topic.
void destroy();
};
};

原创粉丝点击