All Downloads are FREE. Search and download functionalities are using the official Maven repository.

brainslug.flow.execution.async.AsyncTriggerSchedulerOptions Maven / Gradle / Ivy

The newest version!
package brainslug.flow.execution.async;


public class AsyncTriggerSchedulerOptions extends SchedulerOptions {
  long maxTaskCount = 50;

  public long getMaxTaskCount() {
    return maxTaskCount;
  }

  public AsyncTriggerSchedulerOptions withMaxTaskCount(long maxTaskCount) {
    this.maxTaskCount = maxTaskCount;
    return this;
  }

  @Override
  public String toString() {
    return super.toString() + "{" +
      "maxTaskCount=" + maxTaskCount +
      '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy