IceStorm._TopicManagerOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icestorm-compat Show documentation
Show all versions of icestorm-compat Show documentation
Publish-subscribe event distribution service
// **********************************************************************
//
// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
//
// Ice version 3.7.1
//
//
//
// Generated from file `IceStorm.ice'
//
// Warning: do not edit this file.
//
//
//
package IceStorm;
/**
* A topic manager manages topics, and subscribers to topics.
*
* @see Topic
*
**/
public interface _TopicManagerOperations
{
/**
* Create a new topic. The topic name must be unique.
*
* @param name The name of the topic.
*
* @param current The Current object for the invocation.
* @return A proxy to the topic instance.
*
* @throws TopicExists Raised if a topic with the same name already
* exists.
*
**/
TopicPrx create(String name, Ice.Current current)
throws TopicExists;
/**
* Retrieve a topic by name.
*
* @param name The name of the topic.
*
* @param current The Current object for the invocation.
* @return A proxy to the topic instance.
*
* @throws NoSuchTopic Raised if the topic does not exist.
*
**/
TopicPrx retrieve(String name, Ice.Current current)
throws NoSuchTopic;
/**
* Retrieve all topics managed by this topic manager.
*
* @param current The Current object for the invocation.
* @return A dictionary of string, topic proxy pairs.
*
**/
java.util.Map retrieveAll(Ice.Current current);
/**
* Returns the checksums for the IceStorm Slice definitions.
*
* @param current The Current object for the invocation.
* @return A dictionary mapping Slice type ids to their checksums.
*
**/
java.util.Map getSliceChecksums(Ice.Current current);
}