Examples of QueueStatusDTO


Examples of org.apache.activemq.apollo.dto.QueueStatusDTO

    public DestMetricsDTO getMetrics(Broker broker, Destination destination) {
        DestMetricsDTO metrics = null;
        switch (DestinationType.of(destination)) {
            case QUEUE_TYPE:
            case TEMP_QUEUE_TYPE:{
                QueueStatusDTO dto = BrokerTestSupport.queue_status((Broker) broker, name(destination));
                if( dto != null ) {
                    metrics = dto.metrics;
                }
            }
            case TOPIC_TYPE: {
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.