1 package com.griddynamics.jagger.user.test.configurations.load.aux;
9 private final long maxLoadThreads;
12 if (maxLoadThreads <= 0) {
13 throw new IllegalArgumentException(
14 String.format(
"The maximum number of threads must be > 0. Provided value is %s", maxLoadThreads));
16 this.maxLoadThreads = maxLoadThreads;
24 return maxLoadThreads;