Package org.apache.activemq.management

Examples of org.apache.activemq.management.BoundedRangeStatisticImpl


    /**
     * Use case for BoundedRangeStatisticImpl class.
     * @throws Exception
     */
    public void testStatistic() throws Exception {
        BoundedRangeStatisticImpl stat = new BoundedRangeStatisticImpl("myRange", "millis", "myDescription", 10, 3000);
        assertStatistic(stat, "myRange", "millis", "myDescription");
        assertEquals(10, stat.getLowerBound());
        assertEquals(3000, stat.getUpperBound());

        assertRangeStatistic(stat);
    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.management.BoundedRangeStatisticImpl

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.