Uses of Interface
org.apache.cassandra.concurrent.ScheduledExecutorPlus
-
Packages that use ScheduledExecutorPlus Package Description org.apache.cassandra.concurrent org.apache.cassandra.repair -
-
Uses of ScheduledExecutorPlus in org.apache.cassandra.concurrent
Classes in org.apache.cassandra.concurrent that implement ScheduledExecutorPlus Modifier and Type Class Description class
ScheduledThreadPoolExecutorPlus
Like ExecutorPlus, ScheduledThreadPoolExecutorPlus always logs exceptions from the tasks it is given, even if Future.get is never called elsewhere.Fields in org.apache.cassandra.concurrent declared as ScheduledExecutorPlus Modifier and Type Field 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.Methods in org.apache.cassandra.concurrent that return ScheduledExecutorPlus Modifier and Type Method Description ScheduledExecutorPlus
ExecutorFactory.Default. scheduled(boolean executeOnShutdown, java.lang.String name, int priority, ExecutorFactory.SimulatorSemantics simulatorSemantics)
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)
default ScheduledExecutorPlus
ExecutorFactory. scheduled(java.lang.String name)
default ScheduledExecutorPlus
ExecutorFactory. scheduled(java.lang.String name, ExecutorFactory.SimulatorSemantics simulatorSemantics)
-
Uses of ScheduledExecutorPlus in org.apache.cassandra.repair
Methods in org.apache.cassandra.repair that return ScheduledExecutorPlus Modifier and Type Method Description ScheduledExecutorPlus
SharedContext.ForwardingSharedContext. nonPeriodicTasks()
ScheduledExecutorPlus
SharedContext.Global. nonPeriodicTasks()
ScheduledExecutorPlus
SharedContext. nonPeriodicTasks()
ScheduledExecutorPlus
SharedContext.ForwardingSharedContext. optionalTasks()
ScheduledExecutorPlus
SharedContext.Global. optionalTasks()
ScheduledExecutorPlus
SharedContext. optionalTasks()
ScheduledExecutorPlus
SharedContext.ForwardingSharedContext. scheduledTasks()
ScheduledExecutorPlus
SharedContext.Global. scheduledTasks()
ScheduledExecutorPlus
SharedContext. scheduledTasks()
-