com.sun.faban.driver
Annotation Type FixedTime


@Retention(value=RUNTIME)
@Target(value={TYPE,METHOD,ANNOTATION_TYPE})
public @interface FixedTime

The FixedTime annotation defines a fixed cycle or think time. The attributes of this annotation defines the type, time, and allowed deviation from the given time.


Required Element Summary
 double cycleDeviation
          The allowed deviation from the targeted time, in %.
 
Optional Element Summary
 int cycleTime
          The cycle or think time in milliseconds.
 CycleType cycleType
          The type of cycle to be used.
 

Element Detail

cycleDeviation

public abstract double cycleDeviation
The allowed deviation from the targeted time, in %.

cycleType

public abstract CycleType cycleType
The type of cycle to be used.

Default:
com.sun.faban.driver.CycleType.CYCLETIME

cycleTime

public abstract int cycleTime
The cycle or think time in milliseconds.

Default:
1000