Package com.sleepycat.je.recovery

Examples of com.sleepycat.je.recovery.RecoveryInfo


            env = new EnvironmentImpl(envHome, envConfig);
       
            List expectedRecords = new ArrayList();
           
            // Recovery itself will log two messages
            RecoveryInfo info = new RecoveryInfo();
            expectedRecords.add(new Tracer("Recovery w/no files."));
            expectedRecords.add(new Tracer
        ("Checkpoint 1: source=recovery" +
         " success=true nFullINFlushThisRun=0" +
         " nDeltaINFlushThisRun=0"));
            expectedRecords.add(new Tracer("Recovery finished: "  +
             info.toString()));
           
            // Log a message
            Tracer.trace(Level.INFO, env, "hi there");
            expectedRecords.add(new Tracer("hi there"));
View Full Code Here

TOP

Related Classes of com.sleepycat.je.recovery.RecoveryInfo

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.