Package com.sleepycat.je.log

Examples of com.sleepycat.je.log.Provisional


                 * INs at the max flush level are always non-provisional and
                 * INs at the bottom level (when this is not also the max flush
                 * level) are always provisional.  In between INs are
                 * provisional BEFORE_CKPT_END (see Provisional).
                 */
                Provisional provisional;
                if (currentLevel >= maxFlushLevel) {
                    provisional = Provisional.NO;
                } else if (bottomLevelTarget) {
                    provisional = Provisional.YES;
                } else {
View Full Code Here


                 * the case where this IN is a DIN root, and the parent is a
                 * BIN that will not be flushed because the maxFlushLevel is
                 * less than IN.MAIN_LEVEL (0x10000).  For example, this IN is
                 * a DIN root at level 2 and the maxFlushLevel is 3.  [#16712]
                 */
                Provisional provisional;
                if (parentLevel > maxFlushLevel) {
                    provisional = Provisional.NO;
                } else if (bottomLevelTarget) {
                    provisional = Provisional.YES;
                } else {
View Full Code Here

TOP

Related Classes of com.sleepycat.je.log.Provisional

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.