Package hermes.ext.seebeyond.model

Examples of hermes.ext.seebeyond.model.SeeBeyondQueue


    String destinationName = getRealDestinationName(dConfig);
    Properties props = null;
    int depth = 0;
    if (dConfig.getDomain() == Domain.QUEUE.getId()) {
      props = seeBeyondAdmin.getQueueStatistics(destinationName);
      SeeBeyondQueue sbQueue = new SeeBeyondQueue(props);
      stats.put("Queue Name", sbQueue.getQueueName());
      stats.put("Min Sequence Number", sbQueue.getMinSequence());
      stats.put("Max Sequence Number", sbQueue.getMaxSequence());
      stats.put("Available Count", sbQueue.getMessageCount());
      stats.put("Number of Receivers", sbQueue.getCurrentReceivers());
      stats.put("Last Published Date/Time", sbQueue.getLastEnqueueTime());
    } else {
      props = seeBeyondAdmin.getTopicStatistics(destinationName);
      SeeBeyondTopic sbTopic = new SeeBeyondTopic(props);
      stats.put("Topic Name", sbTopic.getTopicName());
      stats.put("Min Sequence Number", sbTopic.getFirstSequence());
View Full Code Here

TOP

Related Classes of hermes.ext.seebeyond.model.SeeBeyondQueue

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.