DbTxnRecover.java
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:0k
源码类别:

MySQL数据库

开发平台:

Visual C++

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