com.sleepycat.je
Interface LogScanner


public interface LogScanner

For internal use only.


Method Summary
 boolean scanRecord(DatabaseEntry key, DatabaseEntry data, boolean deleted, String databaseName)
          Called for each record scanned.
 

Method Detail

scanRecord

boolean scanRecord(DatabaseEntry key,
                   DatabaseEntry data,
                   boolean deleted,
                   String databaseName)
Called for each record scanned.

Parameters:
key - is the key entry of the record scanned. This parameter will not be null.
data - is the data entry of the record scanned. This parameter may be null for deleted records.
deleted - is true if the given record is deleted at this point in the log. Note that it may also appear earlier or later in the log.
databaseName - the name of the database in which the record appears. Note that if the database was renamed, this is the last known name of the database at the time scanLog is called.


Copyright (c) 2004-2010 Oracle. All rights reserved.