01: package com.clarkware.junitperf;
02:
03: /**
04: * The <code>Timer</code> interface defines the common interface
05: * implemented by all classes whose instances serve as pluggable timers.
06: *
07: * @author <b>Mike Clark</b>
08: * @author Clarkware Consulting, Inc.
09: */
10:
11: public interface Timer {
12:
13: /**
14: * Returns the timer delay.
15: *
16: * @return Delay (in milliseconds).
17: */
18: public long getDelay();
19: }
|