![JAR search and dependency download from the Maven repository](/logo.png)
brainslug.flow.execution.async.ExecuteTaskCallable Maven / Gradle / Ivy
The newest version!
package brainslug.flow.execution.async;
import brainslug.flow.context.BrainslugContext;
import brainslug.flow.node.task.RetryStrategy;
import java.util.Date;
import java.util.concurrent.Callable;
public class ExecuteTaskCallable implements Callable {
AsyncTriggerStore asyncTriggerStore;
RetryStrategy retryStrategy;
AsyncTriggerExecutor asyncTriggerExecutor;
BrainslugContext context;
AsyncTrigger asyncTrigger;
public ExecuteTaskCallable(BrainslugContext context, AsyncTrigger asyncTrigger, AsyncTriggerStore asyncTriggerStore, AsyncTriggerExecutor asyncTriggerExecutor, RetryStrategy retryStrategy) {
this.context = context;
this.asyncTrigger = asyncTrigger;
this.asyncTriggerStore = asyncTriggerStore;
this.asyncTriggerExecutor = asyncTriggerExecutor;
this.retryStrategy = retryStrategy;
}
@Override
public AsyncTriggerExecutionResult call() {
if (asyncTrigger.getRetries() >= asyncTrigger.getMaxRetries()) {
throw new IllegalStateException();
}
return asyncTriggerExecutor.execute(asyncTrigger, retryStrategy, context, asyncTriggerStore);
}
@Override
public String toString() {
return "ExecuteTaskCallable{" +
"retryStrategy=" + retryStrategy +
", asyncTrigger=" + asyncTrigger +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy