Package javax.management.j2ee.statistics

Examples of javax.management.j2ee.statistics.Statistic


    public void reset() {
        super.reset();
        JMSSessionStatsImpl[] stats = getSessions();
        for (int i = 0, size = stats.length; i < size; i++) {
            Statistic stat = (Statistic) stats[i];
            if (stat instanceof Resettable) {
                Resettable r = (Resettable) stat;
                r.reset();
            }
        }
View Full Code Here


    }

    public void reset() {
        Statistic[] stats = getStatistics();
        for (int i = 0, size = stats.length; i < size; i++) {
            Statistic stat = stats[i];
            if (stat instanceof Resettable) {
                Resettable r = (Resettable) stat;
                r.reset();
            }
        }
View Full Code Here

TOP

Related Classes of javax.management.j2ee.statistics.Statistic

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.