/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2001-2005 * Sleepycat Software. All rights reserved. * * $Id: BtreePrefixCalculator.java,v 12.1 2005/06/16 20:22:58 bostic Exp $ */ package com.sleepycat.db; public interface BtreePrefixCalculator { int prefix(Database db, DatabaseEntry dbt1, DatabaseEntry dbt2); }