
public class OThreadPoolExecutors extends Object
| Modifier and Type | Method and Description |
|---|---|
static ExecutorService |
newBlockingScalingThreadPool(String threadName,
ThreadGroup parentThreadGroup,
int corePoolSize,
int maxPoolSize,
int targetQueueCapacity,
int maxQueueCapacity,
long timeout,
TimeUnit timeoutUnit) |
static ExecutorService |
newCachedThreadPool(String threadName) |
static ExecutorService |
newCachedThreadPool(String threadName,
ThreadGroup parentThreadGroup) |
static ExecutorService |
newCachedThreadPool(String threadName,
ThreadGroup parentThreadGroup,
int maxThreads,
int maxQueue) |
static ExecutorService |
newFixedThreadPool(String threadName,
int poolSize) |
static ExecutorService |
newFixedThreadPool(String threadName,
ThreadGroup parentThreadGroup,
int poolSize) |
static ExecutorService |
newScalingThreadPool(String threadName,
int corePoolSize,
int maxPoolSize,
int queueCapacity,
long timeout,
TimeUnit timeoutUnit) |
static ExecutorService |
newScalingThreadPool(String threadName,
ThreadGroup parentThreadGroup,
int corePoolSize,
int maxPoolSize,
int queueCapacity,
long timeout,
TimeUnit timeoutUnit) |
static ExecutorService |
newSingleThreadPool(String threadName) |
static ExecutorService |
newSingleThreadPool(String threadName,
int maxQueue,
RejectedExecutionHandler rejectHandler) |
static ExecutorService |
newSingleThreadPool(String threadName,
ThreadGroup parentThreadGroup) |
static ScheduledExecutorService |
newSingleThreadScheduledPool(String threadName) |
static ScheduledExecutorService |
newSingleThreadScheduledPool(String threadName,
ThreadGroup parentThreadGroup) |
public static ExecutorService newScalingThreadPool(String threadName, int corePoolSize, int maxPoolSize, int queueCapacity, long timeout, TimeUnit timeoutUnit)
public static ExecutorService newScalingThreadPool(String threadName, ThreadGroup parentThreadGroup, int corePoolSize, int maxPoolSize, int queueCapacity, long timeout, TimeUnit timeoutUnit)
public static ExecutorService newBlockingScalingThreadPool(String threadName, ThreadGroup parentThreadGroup, int corePoolSize, int maxPoolSize, int targetQueueCapacity, int maxQueueCapacity, long timeout, TimeUnit timeoutUnit)
public static ExecutorService newFixedThreadPool(String threadName, int poolSize)
public static ExecutorService newFixedThreadPool(String threadName, ThreadGroup parentThreadGroup, int poolSize)
public static ExecutorService newCachedThreadPool(String threadName)
public static ExecutorService newCachedThreadPool(String threadName, ThreadGroup parentThreadGroup)
public static ExecutorService newCachedThreadPool(String threadName, ThreadGroup parentThreadGroup, int maxThreads, int maxQueue)
public static ExecutorService newSingleThreadPool(String threadName)
public static ExecutorService newSingleThreadPool(String threadName, ThreadGroup parentThreadGroup)
public static ExecutorService newSingleThreadPool(String threadName, int maxQueue, RejectedExecutionHandler rejectHandler)
public static ScheduledExecutorService newSingleThreadScheduledPool(String threadName)
public static ScheduledExecutorService newSingleThreadScheduledPool(String threadName, ThreadGroup parentThreadGroup)
Copyright © 2009–2025 OrientDB. All rights reserved.