Examples of ClusterAdd


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

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

   * @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

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

   * @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

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

   *
   * @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

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

   *
   * @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
Copyright © 2018 www.massapi.com. 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.