com.sun.faban.driver
Annotation Type Uniform


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

The Uniform annotation defines a uniform distribution of the cycle or think times. The attributes of this annotation defines the parameters of the uniform distribution.


Required Element Summary
 double cycleDeviation
          The allowed deviation from the targeted time, in %.
 
Optional Element Summary
 int cycleMax
          The max cycle or think time in milliseconds.
 int cycleMin
          The min 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

cycleMin

public abstract int cycleMin
The min cycle or think time in milliseconds.

Default:
1000

cycleMax

public abstract int cycleMax
The max cycle or think time in milliseconds.

Default:
1000