Examples of SeeBeyondTopic


Examples of hermes.ext.seebeyond.model.SeeBeyondTopic

      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());
      stats.put("Max Sequence Number", sbTopic.getLastSequence());
      stats.put("Available Count", sbTopic.getMessageCount());
      stats.put("Number of Subscribers", sbTopic.getCurrentSubscribers());
      stats.put("Last Published Date/Time", sbTopic.getLastEnqueueTime());
    }

    return stats;
  }
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.