Package | Description |
---|---|
org.apache.cassandra.concurrent |
Modifier and Type | Class and Description |
---|---|
class |
ScheduledThreadPoolExecutorPlus
Like ExecutorPlus, ScheduledThreadPoolExecutorPlus always
logs exceptions from the tasks it is given, even if Future.get is never called elsewhere.
|
Modifier and Type | Field and Description |
---|---|
static ScheduledExecutorPlus |
ScheduledExecutors.nonPeriodicTasks
This executor is used for tasks that can have longer execution times, and usually are non periodic.
|
static ScheduledExecutorPlus |
ScheduledExecutors.optionalTasks
This executor is used for tasks that do not need to be waited for on shutdown/drain.
|
static ScheduledExecutorPlus |
ScheduledExecutors.scheduledFastTasks
This pool is used for periodic fast (sub-microsecond) tasks.
|
static ScheduledExecutorPlus |
ScheduledExecutors.scheduledTasks
This pool is used for periodic short (sub-second) tasks.
|
Modifier and Type | Method and Description |
---|---|
default ScheduledExecutorPlus |
ExecutorFactory.scheduled(boolean executeOnShutdown,
java.lang.String name) |
default ScheduledExecutorPlus |
ExecutorFactory.scheduled(boolean executeOnShutdown,
java.lang.String name,
int priority) |
ScheduledExecutorPlus |
ExecutorFactory.scheduled(boolean executeOnShutdown,
java.lang.String name,
int priority,
ExecutorFactory.SimulatorSemantics simulatorSemantics) |
ScheduledExecutorPlus |
ExecutorFactory.Default.scheduled(boolean executeOnShutdown,
java.lang.String name,
int priority,
ExecutorFactory.SimulatorSemantics simulatorSemantics) |
default ScheduledExecutorPlus |
ExecutorFactory.scheduled(java.lang.String name) |
default ScheduledExecutorPlus |
ExecutorFactory.scheduled(java.lang.String name,
ExecutorFactory.SimulatorSemantics simulatorSemantics) |
Copyright © 2009- The Apache Software Foundation