1 package com.griddynamics.jagger.user.test.configurations.load.auxiliary;
8 private final long requestsPerSecond;
11 if (requestsPerSecond <= 0) {
12 throw new IllegalArgumentException(
13 String.format(
"Requests per second must be > 0. Provided value is %s", requestsPerSecond));
15 this.requestsPerSecond = requestsPerSecond;
19 return requestsPerSecond;