01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: OO1Benchmark.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.tools;
10:
11: /** */
12: public interface OO1Benchmark {
13:
14: /** */
15: public void create(int countParts, String objectName,
16: String serverName) throws Exception;
17:
18: /** */
19: public void lookup(int count, String objectName, String serverName)
20: throws Exception;
21:
22: /** */
23: public void traversal(int depth, String objectName,
24: String serverName) throws Exception;
25:
26: /** */
27: public void insertAndDelete(int countParts, String objectName,
28: String serverName) throws Exception;
29:
30: /** */
31: public void insert(int countParts, String objectName,
32: String serverName) throws Exception;
33:
34: /** */
35: public void delete(int countParts, String objectName,
36: String serverName) throws Exception;
37:
38: /** */
39: public void createObjects(int count, String objectName,
40: String serverName) throws Exception;
41:
42: /** */
43: public void traversalObjects(int count, String objectName,
44: String serverName) throws Exception;
45:
46: /** */
47: public void insertObjects(int count, String objectName,
48: String serverName) throws Exception;
49:
50: /** */
51: public void setProgressLog(BenchmarkProgressLog log);
52: }
|