
org.scijava.concurrent.TaskExecutor Maven / Gradle / Ivy
Show all versions of scijava-concurrent Show documentation
/*-
* #%L
* SciJava library facilitating consistent parallel processing.
* %%
* Copyright (C) 2021 - 2024 SciJava developers.
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
package org.scijava.concurrent;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.TimeUnit;
import java.util.function.Consumer;
import java.util.function.Function;
/**
* {@link TaskExecutor} is recommended to be used in image processing algorithms
* instead of {@link ExecutorService}. It's simpler to use, and allows single
* threaded execution.
*
*
*
* {@code
*
* // Example of a multi threaded method that fills an image with ones.
* public void fillWithOnes( RandomAccessibleInterval< IntType > image, TaskExecutor taskExecutor )
* {
* int numTasks = taskExecutor.suggestNumberOfTasks();
* List< RandomAccessibleInterval< IntType > > chunks = splitImageIntoChunks( image, numTasks );
*
* // The TaskExecutor executes the forEach method in multi threads, if requested.
* taskExecutor.forEach( chunks, chunk -> {
* for ( IntType pixel : Views.iterable( chunk ) )
* pixel.setOne();
* } );
* }
*
* // The method can be run multi threaded or single threaded
* fillWithOnes( image, TaskExecutors.singleThreaded() );
* fillWithOnes( image, TaskExecutors.multiThreaded() );
* }
*
*/
public interface TaskExecutor extends AutoCloseable {
/**
* Get the number of threads that are used for execution.
*/
int getParallelism();
/**
* If there is a big task that could be split into sub tasks for
* parallelization, this method gives you a reasonable number of sub tasks.
*
* A single threaded {@link TaskExecutor} will return 1. A multi threaded
* {@link TaskExecutor} will usually return 4 times the number of threads.
*/
int suggestNumberOfTasks();
/**
* This method will execute the given list of tasks. A single threaded
* {@link TaskExecutor} will execute the tasks one after the other. A multi
* threaded {@link TaskExecutor} will distribute the tasks to the threads. The
* method blocks until all tasks are completed.
*/
void runAll(List tasks);
/**
* Like {@link #runAll(List)} but - instead of a list of tasks - it takes a
* list of parameters and a function that is called for each of the
* parameters.
*/
void forEach(List extends T> parameters, Consumer super T> task);
/**
* Like {@link #forEach(List, Consumer)} but collects the results.
*/
List forEachApply(List extends T> parameters,
Function super T, ? extends R> task);
/**
* Get the underlying {@link ExecutorService}. This is not always a fully
* functional {@link ExecutorService}: Especially the methods
* {@link ExecutorService#shutdown()} and
* {@link ExecutorService#awaitTermination(long, TimeUnit)} must not be used.
*/
ExecutorService getExecutorService();
@Override
void close();
}