KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > tools > OO1Benchmark


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
// $Id: OO1Benchmark.java,v 1.3 2000/10/28 16:55:20 daniela Exp $
8

9 package org.ozoneDB.tools;
10
11
12 /** */
13 public interface OO1Benchmark {
14     
15     
16     /** */
17     public void create( int countParts, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
18     
19     
20     /** */
21     public void lookup( int count, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
22     
23     
24     /** */
25     public void traversal( int depth, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
26     
27     
28     /** */
29     public void insertAndDelete( int countParts, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
30     
31     
32     /** */
33     public void insert( int countParts, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
34     
35     
36     /** */
37     public void delete( int countParts, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
38     
39     
40     /** */
41     public void createObjects( int count, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
42     
43     
44     /** */
45     public void traversalObjects( int count, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
46     
47     
48     /** */
49     public void insertObjects( int count, String JavaDoc objectName, String JavaDoc serverName ) throws Exception JavaDoc;
50     
51     
52     /** */
53     public void setProgressLog( BenchmarkProgressLog log );
54 }
55
Popular Tags