Package org.opennms.core.concurrent
Interface ExecutorFactory
-
- All Known Implementing Classes:
ExecutorFactoryCassandraSEPImpl,ExecutorFactoryJavaImpl
public interface ExecutorFactoryThis factory is used to createExecutorServicethread pools for use by daemon processes. This is provided as a service so that thread pools throughout the system are constructed in the same manner and have consistent thread names, logging, and queue implementations.- Author:
- Seth
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutorServicenewExecutor(int threads, int queueSize, String daemonName, String executorName)Construct a newExecutorServicewith a specified queue size for the backlog of tasks.ExecutorServicenewExecutor(int threads, String daemonName, String executorName)Construct a newExecutorServicewith an unbounded queue size ({@link Integer#MAX_VALUE). For CPU-intensive tasks, it is a good idea to use the value of {@link Runtime#availableProcessors()} (or a reasonable multiple of it based on the tasks) for thethreadsparameter to ensure that the CPU is fully utilized.ExecutorServicenewExecutor(String daemonName, String executorName)Construct a newExecutorServicewith an unbounded queue size and a thread pool size equal to the value ofRuntime.availableProcessors()so that one thread per core is started.
-
-
-
Method Detail
-
newExecutor
ExecutorService newExecutor(String daemonName, String executorName)
Construct a newExecutorServicewith an unbounded queue size and a thread pool size equal to the value ofRuntime.availableProcessors()so that one thread per core is started.- Parameters:
daemonName-executorName-- Returns:
-
newExecutor
ExecutorService newExecutor(int threads, String daemonName, String executorName)
Construct a newExecutorServicewith an unbounded queue size ({@link Integer#MAX_VALUE). For CPU-intensive tasks, it is a good idea to use the value of {@link Runtime#availableProcessors()} (or a reasonable multiple of it based on the tasks) for thethreadsparameter to ensure that the CPU is fully utilized.- Parameters:
threads-daemonName-executorName-- Returns:
- An ExecutorService pool
-
newExecutor
ExecutorService newExecutor(int threads, int queueSize, String daemonName, String executorName)
Construct a newExecutorServicewith a specified queue size for the backlog of tasks. When the queue is full, the pool may block, discard the incoming task, or throw an exception. This behavior is dependent on the implementation of theExecutorService. For CPU-intensive tasks, it is a good idea to use the value ofRuntime.availableProcessors()(or a reasonable multiple of it based on the tasks) for thethreadsparameter to ensure that the CPU is fully utilized.- Parameters:
threads-daemonName-executorName-- Returns:
- An ExecutorService pool
-
-