00001 /*- 00002 * See the file LICENSE for redistribution information. 00003 * 00004 * Copyright (c) 2000-2005 00005 * Sleepycat Software. All rights reserved. 00006 * 00007 * $Id: LogRecordHandler.java,v 12.1 2005/06/16 20:23:02 bostic Exp $ 00008 */ 00009 package com.sleepycat.db; 00010 00011 public interface LogRecordHandler { 00012 int handleLogRecord(Environment dbenv, 00013 DatabaseEntry logRecord, 00014 LogSequenceNumber lsn, 00015 RecoveryOperation operation); 00016 }