Package com.sleepycat.je.dbi

Examples of com.sleepycat.je.dbi.DiskOrderedCursorImpl$DiskOrderedCursorTreeWalker$StopGatheringException


    DiskOrderedCursor(final Database dbHandle,
                      final DiskOrderedCursorConfig config) {
        this.dbHandle = dbHandle;
        this.config = config;
        dbImpl = dbHandle.getDatabaseImpl();
        dosCursorImpl = new DiskOrderedCursorImpl(dbImpl, config);
        dbHandle.addCursor(this);
        this.logger = dbImpl.getDbEnvironment().getLogger();
    }
View Full Code Here

TOP

Related Classes of com.sleepycat.je.dbi.DiskOrderedCursorImpl$DiskOrderedCursorTreeWalker$StopGatheringException

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.