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