DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Berkeley DB
version 4.4.20

Uses of Class
com.sleepycat.db.RecoveryOperation

Packages that use RecoveryOperation
com.sleepycat.db Berkeley DB Java API
[reference guide] [Java programming notes]
 

Uses of RecoveryOperation in com.sleepycat.db
 

Fields in com.sleepycat.db declared as RecoveryOperation
static RecoveryOperation RecoveryOperation.BACKWARD_ROLL
          The log is being read backward to determine which transactions have been committed and to abort those operations that were not; undo the operation described by the log record.
static RecoveryOperation RecoveryOperation.FORWARD_ROLL
          The log is being played forward; redo the operation described by the log record.
static RecoveryOperation RecoveryOperation.ABORT
          The log is being read backward during a transaction abort; undo the operation described by the log record.
static RecoveryOperation RecoveryOperation.APPLY
          The log is being applied on a replica site; redo the operation described by the log record.
static RecoveryOperation RecoveryOperation.PRINT
          The log is being printed for debugging purposes; print the contents of this log record in the desired format.
 

Methods in com.sleepycat.db that return RecoveryOperation
static RecoveryOperation RecoveryOperation.fromFlag(int flag)
          Internal: this is public only so it can be called from an internal package.
 

Methods in com.sleepycat.db with parameters of type RecoveryOperation
 int LogRecordHandler.handleLogRecord(Environment environment, DatabaseEntry logRecord, LogSequenceNumber lsn, RecoveryOperation operation)
           
 


Berkeley DB
version 4.4.20

Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.