Package org.objectweb.joram.shared.admin

Examples of org.objectweb.joram.shared.admin.ClusterAdd


   * @exception AdminException  If the request fails.
   * @deprecated
   */
  public static void setClusterLink(Topic clusterTopic,
                                    Topic joiningTopic) throws ConnectException, AdminException {
    AdminModule.doRequest(new ClusterAdd(clusterTopic.getName(), joiningTopic.getName()));
  }
View Full Code Here


   * @exception AdminException  If the request fails.
   * @deprecated
   */
  public static void setQueueCluster(Queue clusterQueue,
                                     Queue joiningQueue) throws ConnectException, AdminException {
    AdminModule.doRequest(new ClusterAdd(clusterQueue.getName(), joiningQueue.getName()));
  }
View Full Code Here

   * @exception AdminException  If the request fails.
   * @deprecated
   */
  public static void setQueueCluster(Destination clusterQueue,
                                     Queue joiningQueue) throws ConnectException, AdminException {
    AdminModule.doRequest(new ClusterAdd(clusterQueue.getName(), joiningQueue.getName()));
  }
View Full Code Here

   *
   * @exception ConnectException  If the admin connection is closed or broken.
   * @exception AdminException  If the request fails.
   */
  public void addClusteredTopic(Topic addedTopic) throws ConnectException, AdminException {
    doRequest(new ClusterAdd(agentId, addedTopic.getName()));
  }
View Full Code Here

   *
   * @exception ConnectException  If the admin connection is closed or broken.
   * @exception AdminException  If the request fails.
   */
  public void addClusteredQueue(Queue addedQueuethrows ConnectException, AdminException {
    doRequest(new ClusterAdd(agentId, addedQueue.getName()));
  }
View Full Code Here

TOP

Related Classes of org.objectweb.joram.shared.admin.ClusterAdd

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.