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