Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
Builder com.griddynamics.jagger.invoker.scenario.JHttpUserScenarioInvocationListener.Builder.withLatencyPercentileAggregators ( Double  percentile,
Double...  percentiles 
)

Definition at line 70 of file JHttpUserScenarioInvocationListener.java.

70  {
71  this.latencyAggregatorProviders.add(PERCENTILE_AGGREGATOR(percentile));
72  Arrays.stream(percentiles).forEach(p -> this.latencyAggregatorProviders.add(PERCENTILE_AGGREGATOR(p)));
73  return this;
74  }