DbBtreePrefix.java 430 Bytes
Newer Older
1 2 3
/*-
 * See the file LICENSE for redistribution information.
 *
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
4 5
 * Copyright (c) 2000-2002
 *      Sleepycat Software.  All rights reserved.
6
 *
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
7
 * $Id: DbBtreePrefix.java,v 11.6 2002/01/11 15:52:33 bostic Exp $
8 9 10 11 12 13
 */

package com.sleepycat.db;

/*
 * This interface is used by DbEnv.set_bt_prefix()
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
14
 *
15 16 17 18 19 20 21
 */
public interface DbBtreePrefix
{
    public abstract int bt_prefix(Db db, Dbt dbt1, Dbt dbt2);
}

// end of DbBtreePrefix.java