Uses of Enum
org.apache.druid.java.util.common.concurrent.ScheduledExecutors.Signal
Packages that use ScheduledExecutors.Signal
-
Uses of ScheduledExecutors.Signal in org.apache.druid.java.util.common.concurrent
Methods in org.apache.druid.java.util.common.concurrent that return ScheduledExecutors.SignalModifier and TypeMethodDescriptionstatic ScheduledExecutors.SignalReturns the enum constant of this type with the specified name.static ScheduledExecutors.Signal[]ScheduledExecutors.Signal.values()Returns an array containing the constants of this enum type, in the order they are declared.Method parameters in org.apache.druid.java.util.common.concurrent with type arguments of type ScheduledExecutors.SignalModifier and TypeMethodDescriptionstatic voidScheduledExecutors.scheduleAtFixedRate(ScheduledExecutorService exec, org.joda.time.Duration rate, Callable<ScheduledExecutors.Signal> callable) static voidScheduledExecutors.scheduleAtFixedRate(ScheduledExecutorService exec, org.joda.time.Duration initialDelay, org.joda.time.Duration rate, Callable<ScheduledExecutors.Signal> callable) static voidScheduledExecutors.scheduleWithFixedDelay(ScheduledExecutorService exec, org.joda.time.Duration initialDelay, org.joda.time.Duration delay, Callable<ScheduledExecutors.Signal> callable) Run callable repeatedly with the given delay between calls, until it returns Signal.STOP.