Class LogNormal
- java.lang.Object
-
- com.github.tomakehurst.wiremock.http.LogNormal
-
- All Implemented Interfaces:
DelayDistribution
public final class LogNormal extends java.lang.Object implements DelayDistribution
Returns log normally distributed values. Takes two parameters, the median (50th percentile) of the lognormal and the standard deviation of the underlying normal distribution.The larger the standard deviation the longer the tails.
- See Also:
- lognormal example
-
-
Constructor Summary
Constructors Constructor Description LogNormal(double median, double sigma)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longsampleMillis()Samples a delay in milliseconds from the distribution.
-
-
-
Method Detail
-
sampleMillis
public long sampleMillis()
Description copied from interface:DelayDistributionSamples a delay in milliseconds from the distribution.- Specified by:
sampleMillisin interfaceDelayDistribution- Returns:
- next delay in millis
-
-