~ubuntu-branches/ubuntu/edgy/rpm/edgy

« back to all changes in this revision

Viewing changes to db/java/src/com/sleepycat/db/DbTxnRecover.java

  • Committer: Bazaar Package Importer
  • Author(s): Joey Hess
  • Date: 2002-01-22 20:56:57 UTC
  • Revision ID: james.westby@ubuntu.com-20020122205657-l74j50mr9z8ofcl5
Tags: upstream-4.0.3
ImportĀ upstreamĀ versionĀ 4.0.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-
 
2
 * See the file LICENSE for redistribution information.
 
3
 *
 
4
 * Copyright (c) 2000-2001
 
5
 *      Sleepycat Software.  All rights reserved.
 
6
 *
 
7
 * $Id: DbTxnRecover.java,v 11.4 2001/07/02 01:03:23 bostic Exp $
 
8
 */
 
9
 
 
10
package com.sleepycat.db;
 
11
 
 
12
/*
 
13
 * This interface is used by DbEnv.set_tx_recover()
 
14
 *
 
15
 */
 
16
public interface DbTxnRecover
 
17
{
 
18
    // The value of recops is one of the Db.DB_TXN_* constants
 
19
    public abstract int tx_recover(DbEnv env, Dbt dbt, DbLsn lsn, int recops);
 
20
}
 
21
 
 
22
// end of DbBtreeCompare.java