Package com.foundationdb.util

Examples of com.foundationdb.util.GCMonitor


    @Override
    public void start() {
        int interval = Integer.parseInt(config.getProperty(GC_INTERVAL_NAME));
        int logThreshold = Integer.parseInt(config.getProperty(GC_THRESHOLD_NAME));
        if(interval > 0) {
            gcMonitor = new GCMonitor(interval, logThreshold);
            gcMonitor.start();
        }
    }
View Full Code Here

TOP

Related Classes of com.foundationdb.util.GCMonitor

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.