org.jboss.hal.flow.ParallelTasks Maven / Gradle / Ivy
Show all versions of hal-flow Show documentation
/*
* Copyright 2022 Red Hat
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.hal.flow;
import java.util.List;
import elemental2.promise.Promise;
import static org.jboss.hal.flow.Flow.parallel;
/**
* A task implementation that executes a list of {@linkplain Task asynchronous tasks} in
* {@linkplain Flow#parallel(FlowContext, List) parallel}.
*
* This implementation makes it easy to nest the execution of {@linkplain Task asynchronous tasks} inside a call to
* {@link Flow#parallel(FlowContext, List)}, {@link Flow#sequential(FlowContext, List)} or
* {@link Flow#repeat(FlowContext, Task)}.
*
* @param the type of the {@linkplain FlowContext context} shared between tasks
*/
public class ParallelTasks implements Task {
private final C context;
private final List> tasks;
private final boolean failFast;
/**
* Creates a new task that executes the given list of {@linkplain Task asynchronous tasks} in
* {@linkplain Flow#parallel(FlowContext, List) parallel} re-using an existing {@linkplain FlowContext context}.
*
* The task fails fast and re-uses the {@linkplain FlowContext context} from the outer call to
* {@link Flow#parallel(FlowContext, List)}, {@link Flow#sequential(FlowContext, List)} or
* {@link Flow#repeat(FlowContext, Task)}.
*
* @param tasks the list of tasks to execute
*/
public ParallelTasks(final List> tasks) {
this(null, tasks, Sequence.DEFAULT_FAIL_FAST);
}
/**
* Creates a new task that executes the given list of {@linkplain Task asynchronous tasks} in
* {@linkplain Flow#parallel(FlowContext, List) parallel} re-using an existing {@linkplain FlowContext context}.
*
* The task re-uses the {@linkplain FlowContext context} from the outer call to {@link Flow#parallel(FlowContext, List)},
* {@link Flow#sequential(FlowContext, List)} or {@link Flow#repeat(FlowContext, Task)}.
*
* @param tasks the list of tasks to execute
* @param failFast whether the execution of the tasks should fail fast or fail last
*/
public ParallelTasks(final List> tasks, final boolean failFast) {
this(null, tasks, failFast);
}
/**
* Creates a new task that executes the given list of {@linkplain Task asynchronous tasks} in
* {@linkplain Flow#parallel(FlowContext, List) parallel} using a new {@linkplain FlowContext context}.
*
* The task fails fast and uses the given {@linkplain FlowContext context} for the execution of the {@linkplain Task
* asynchronous tasks}.
*
* @param context the context shared between tasks
* @param tasks The list of tasks to execute
*/
public ParallelTasks(final C context, final List> tasks) {
this(context, tasks, Sequence.DEFAULT_FAIL_FAST);
}
/**
* Creates a new task that executes the given list of {@linkplain Task asynchronous tasks} in
* {@linkplain Flow#parallel(FlowContext, List) parallel} using a new {@linkplain FlowContext context}.
*
* The task uses the given {@linkplain FlowContext context} for the execution of the {@linkplain Task asynchronous tasks}.
*
* @param context the context shared between tasks
* @param tasks The list of tasks to execute
* @param failFast whether the execution of the tasks should fail fast or fail last
*/
public ParallelTasks(final C context, final List> tasks, final boolean failFast) {
this.context = context;
this.tasks = tasks;
this.failFast = failFast;
}
@Override
public Promise apply(final C context) {
C contextToUse = this.context != null ? this.context : context;
return parallel(contextToUse, tasks)
.failFast(failFast)
.promise();
}
}