public void setThreads()

in app/eventgenerator/src/main/java/com/googlecodesamples/cloud/jss/eventgenerator/config/EventGeneratorConfig.java [46:51]


  public void setThreads(Integer threads) throws IllegalArgumentException {
    if (threads <= 0) {
      throw new IllegalArgumentException(ERROR_MSG_NEGATIVE_THREADS);
    }
    this.threads = threads;
  }