Package org.objectweb.joram.shared.admin

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


   * @exception ConnectException  If the admin connection is closed or broken.
   * @exception AdminException  If the request fails.
   */
  public void setNbMaxMsg(String subName, int nbMaxMsg) throws ConnectException, AdminException {
    //  TODO: Subscription sub = getSubscription(subName);
    doRequest(new SetNbMaxMsgRequest(proxyId, nbMaxMsg, subName));
  }
View Full Code Here


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

TOP

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

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.