DbHash.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: DbHash.java,v 11.1 2000/07/04 20:53:19 dda Exp $
  8.  */
  9. package com.sleepycat.db;
  10. /*
  11.  * This interface is used by DbEnv.set_bt_compare()
  12.  * 
  13.  */
  14. public interface DbHash
  15. {
  16.     public abstract int hash(Db db, byte[] data, int len);
  17. }
  18. // end of DbHash.java