public void setRuntime()

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


  public void setRuntime(Float runtime) throws IllegalArgumentException {
    if (runtime <= 0) {
      throw new IllegalArgumentException(ERROR_MSG_NEGATIVE_RUNTIME);
    }
    this.runtime = runtime;
  }