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

org.apache.phoenix.hbase.index.parallel.TaskRunner Maven / Gradle / Ivy

There is a newer version: 4.15.0-HBase-1.5
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.phoenix.hbase.index.parallel;

import java.util.List;
import java.util.concurrent.ExecutionException;

import org.apache.hadoop.hbase.Stoppable;

/**
 *
 */
public interface TaskRunner extends Stoppable {

  /**
   * Submit the given tasks to the pool and wait for them to complete. fail.
   * 

* Non-interruptible method. To stop any running tasks call {@link #stop(String)} - this will * shutdown the thread pool, causing any pending tasks to be failed early (whose failure will be * ignored) and interrupt any running tasks. It is up to the passed tasks to respect the interrupt * notification * @param tasks to run * @return the result from each task * @throws ExecutionException if any of the tasks fails. Wraps the underyling failure, which can * be retrieved via {@link ExecutionException#getCause()}. * @throws InterruptedException if the current thread is interrupted while waiting for the batch * to complete */ public List submit(TaskBatch tasks) throws ExecutionException, InterruptedException; /** * Similar to {@link #submit(TaskBatch)}, but is not interruptible. If an interrupt is found while * waiting for results, we ignore it and only stop is {@link #stop(String)} has been called. On * return from the method, the interrupt status of the thread is restored. * @param tasks to run * @return the result from each task * @throws EarlyExitFailure if there are still tasks to submit to the pool, but there is a stop * notification * @throws ExecutionException if any of the tasks fails. Wraps the underyling failure, which can * be retrieved via {@link ExecutionException#getCause()}. */ public List submitUninterruptible(TaskBatch tasks) throws EarlyExitFailure, ExecutionException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy