Uses of Class
org.apache.druid.java.util.common.concurrent.ScheduledExecutors.Signal
-
Packages that use ScheduledExecutors.Signal Package Description org.apache.druid.java.util.common.concurrent -
-
Uses of ScheduledExecutors.Signal in org.apache.druid.java.util.common.concurrent
Methods in org.apache.druid.java.util.common.concurrent that return ScheduledExecutors.Signal Modifier and Type Method Description static ScheduledExecutors.SignalScheduledExecutors.Signal. valueOf(String name)Returns 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.Signal Modifier and Type Method Description static 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 delay, Callable<ScheduledExecutors.Signal> callable)Run callable repeatedly with the given delay between calls, after the given initial delay, until it returns Signal.STOP.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.
-