Package com.sun.appserv.management.j2ee.statistics

Examples of com.sun.appserv.management.j2ee.statistics.TimeStatisticImpl


    }

    private TimeStatistic createResponseTimeStat(final long maxRespTime,
            final long totalRequests, final long sampleTime,
            final long minRespTime, final long avgRespTime) {
        return new TimeStatisticImpl("ResponseTime", "Response Time",
                "MILLISECOND", startTime, sampleTime,totalRequests,maxRespTime,
                minRespTime, totalRequests*avgRespTime);
    }
View Full Code Here

TOP

Related Classes of com.sun.appserv.management.j2ee.statistics.TimeStatisticImpl

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.