Package com.sleepycat.je.evictor.TargetSelector

Examples of com.sleepycat.je.evictor.TargetSelector.ScanInfo


             */
            while ((evictBytes < maxEvictBytes) &&
                   (numNodesScannedThisBatch <= maxINsPerBatch) &&
                   arbiter.stillNeedsEviction()) {
               
                ScanInfo scanInfo = selector.selectIN(maxINsPerBatch);
                IN target = scanInfo.target;
                numNodesScannedThisBatch += scanInfo.numNodesScanned;

                if (target == null) {
                    break;
View Full Code Here

TOP

Related Classes of com.sleepycat.je.evictor.TargetSelector.ScanInfo

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.