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

com.linkedin.parseq.Par5Task Maven / Gradle / Ivy

/*
 * Copyright 2015 LinkedIn, Inc
 *
 * 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
 *
 * http://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 com.linkedin.parseq;

import static com.linkedin.parseq.function.Tuples.tuple;

import com.linkedin.parseq.function.Tuple5;
import com.linkedin.parseq.internal.InternalUtil;
import com.linkedin.parseq.promise.Promise;
import com.linkedin.parseq.promise.Promises;
import com.linkedin.parseq.promise.SettablePromise;

public class Par5Task extends BaseTask> implements Tuple5Task {
  private final Tuple5, Task, Task, Task, Task> _tasks;

  public Par5Task(final String name, Task task1, Task task2, Task task3, Task task4, Task task5) {
    super(name);
    _tasks = tuple(task1, task2, task3, task4, task5);
  }

  @Override
  protected Promise> run(final Context context) throws Exception {
    final SettablePromise> result = Promises.settable();

    InternalUtil.fastFailAfter(p -> {
      if (p.isFailed()) {
        result.fail(p.getError());
      } else {
        result.done(tuple(_tasks._1().get(),
                          _tasks._2().get(),
                          _tasks._3().get(),
                          _tasks._4().get(),
                          _tasks._5().get()));
      }
    },
    _tasks._1(),
    _tasks._2(),
    _tasks._3(),
    _tasks._4(),
    _tasks._5());

    _tasks.forEach(t -> context.run((Task)t));

    return result;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy