Examples of ClusterLeave


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

   * @exception ConnectException  If the admin connection is closed or broken.
   * @exception AdminException  If the request fails.
   * @deprecated
   */
  public static void unsetClusterLink(Topic topic) throws ConnectException, AdminException {
    AdminModule.doRequest(new ClusterLeave(topic.getName()));
  }
View Full Code Here

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

   * @exception ConnectException  If the admin connection is closed or broken.
   * @exception AdminException  If the request fails.
   * @deprecated
   */
  public static void leaveQueueCluster(Queue clusterQueue, Queue leaveQueue) throws ConnectException, AdminException {
    AdminModule.doRequest(new ClusterLeave(leaveQueue.getName()));
  }
View Full Code Here

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

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

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

   *
   * @exception ConnectException If the admin connection is closed or broken.
   * @exception AdminException If the request fails.
   */
  public void removeFromCluster() throws ConnectException, AdminException {
    doRequest(new ClusterLeave(agentId));
  }
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.