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

« back to all changes in this revision

Viewing changes to db/java/src/com/sleepycat/db/DbSecondaryKeyCreate.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) 1999-2001
 
5
 *      Sleepycat Software.  All rights reserved.
 
6
 *
 
7
 * $Id: DbSecondaryKeyCreate.java,v 11.2 2001/05/16 13:09:31 bostic Exp $
 
8
 */
 
9
 
 
10
package com.sleepycat.db;
 
11
 
 
12
/*
 
13
 * This is used as a callback by Db.associate.
 
14
 */
 
15
public interface DbSecondaryKeyCreate
 
16
{
 
17
    public int secondary_key_create(Db secondary, Dbt key,
 
18
                                    Dbt data, Dbt result)
 
19
        throws DbException;
 
20
}
 
21
 
 
22
// end of DbSecondaryKeyCreate.java