Package com.sun.messaging.jmq.jmsserver

Examples of com.sun.messaging.jmq.jmsserver.BrokerStateHandler.quiesce()


            logger.log(Logger.ERROR, this.getClass().getName() + ": " + errMsg);
  } else  {
        try {
            BrokerStateHandler bsh = Globals.getBrokerStateHandler();
            bsh.quiesce();
        } catch (Exception ex) {
            errMsg = ex.toString();
            status = Status.ERROR;
        }
        }
View Full Code Here


  BrokerStateHandler bsh = Globals.getBrokerStateHandler();

  logger.log(Logger.INFO, "Quiesce request received by MBean " + getMBeanName());

  try  {
      bsh.quiesce();
  } catch (BrokerException e)  {
      handleOperationException(BrokerOperations.QUIESCE, e);
  }
    }
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.