Package com.avaje.ebeaninternal.server.lib.sql.PooledConnectionStatistics

Examples of com.avaje.ebeaninternal.server.lib.sql.PooledConnectionStatistics.LoadValues.plus()


        LoadValues aggregate = collectedStats.getValues(reset);

        freeList.collectStatistics(aggregate, reset);
        busyList.collectStatistics(aggregate, reset);

        aggregate.plus(accumulatedValues);
       
        this.accumulatedValues = (reset) ? new LoadValues() : aggregate;
       
        return new DataSourcePoolStatistics(aggregate.getCollectionStart(), aggregate.getCount(), aggregate.getErrorCount(), aggregate.getHwmMicros(), aggregate.getTotalMicros());
       
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.