![JAR search and dependency download from the Maven repository](/logo.png)
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