01: /*
02: * Created on Oct 11, 2004 by pjacob
03: *
04: */
05: package com.whirlycott.cache.benchmarks;
06:
07: /**
08: * Caches that we benchmark need to implement this interface.
09: * @author pjacob
10: *
11: */
12: public interface Benchmarkable extends Runnable {
13:
14: public Result benchmark(final Params _params);
15:
16: public String getName();
17:
18: public Params getParams();
19:
20: }
|