Class AbstractScheduledEventExecutor
java.lang.Object
java.util.concurrent.AbstractExecutorService
io.netty.util.concurrent.AbstractEventExecutor
io.netty.util.concurrent.AbstractScheduledEventExecutor
- All Implemented Interfaces:
EventExecutor, EventExecutorGroup, ThreadAwareExecutor, Iterable<EventExecutor>, Executor, ExecutorService, ScheduledExecutorService
- Direct Known Subclasses:
GlobalEventExecutor, ManualIoEventLoop, SingleThreadEventExecutor
Abstract base class for
EventExecutors that want to support scheduling.-
Nested Class Summary
Nested classes/interfaces inherited from class AbstractEventExecutor
AbstractEventExecutor.LazyRunnable -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedprotected -
Method Summary
Modifier and TypeMethodDescriptionprotected booleanafterScheduledTaskSubmitted(long deadlineNanos) protected booleanbeforeScheduledTaskSubmitted(long deadlineNanos) Called from arbitrary non-EventExecutorthreads prior to scheduled task submission.protected voidCancel all scheduled tasks.protected static longdeadlineToDelayNanos(long deadlineNanos) Deprecated.protected longdelayNanos(long currentTimeNanos, long scheduledPurgeInterval) Returns the amount of time left until the scheduled task with the closest dead line is executed.protected booleanfetchFromScheduledTaskQueue(Queue<Runnable> taskQueue) Fetch scheduled tasks from the internal queue and add these to the givenQueue.protected longDeprecated.Please use (or override)ticker()instead.protected final booleanReturnstrueif a scheduled task is ready for processing.protected static longDeprecated.Useticker()insteadprotected static longnanoTime()Deprecated.Use the non-staticticker()instead.protected final longReturn the deadline (in nanoseconds) when the next scheduled task is ready to be run or-1if no task is scheduled.protected final longReturn the nanoseconds until the next scheduled task is ready to be run or-1if no task is scheduled.protected final Runnableprotected final RunnablepollScheduledTask(long nanoTime) Return theRunnablewhich is ready to be executed with the givennanoTime.<V> ScheduledFuture<V> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) ticker()The ticker for this executor.protected voidvalidateScheduled(long amount, TimeUnit unit) Deprecated.will be removed in the future.Methods inherited from class AbstractEventExecutor
iterator, lazyExecute, newTaskFor, newTaskFor, next, parent, runTask, safeExecute, shutdown, shutdownGracefully, shutdownNow, submit, submit, submitMethods inherited from class AbstractExecutorService
invokeAll, invokeAll, invokeAny, invokeAnyMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface EventExecutor
inEventLoop, inEventLoop, isExecutorThread, isSuspended, newFailedFuture, newProgressivePromise, newPromise, newSucceededFuture, trySuspendMethods inherited from interface EventExecutorGroup
isShuttingDown, shutdownGracefully, terminationFutureMethods inherited from interface ExecutorService
awaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminatedMethods inherited from interface Iterable
forEach, spliterator
-
Constructor Details
-
AbstractScheduledEventExecutor
protected AbstractScheduledEventExecutor() -
AbstractScheduledEventExecutor
-
-
Method Details
-
ticker
Description copied from interface:EventExecutorGroupThe ticker for this executor. Usually theEventExecutorGroup.schedule(Runnable, long, TimeUnit)methods will follow thesystem ticker(i.e.System.nanoTime()), but especially for testing it is sometimes useful to have more control over the ticker. In that case, this method will be overridden. Code that schedules tasks on this executor should use this ticker in order to stay consistent with the executor (e.g. not be surprised by scheduled tasks running "early").- Returns:
- The ticker for this scheduler
-
getCurrentTimeNanos
Deprecated.Get the current time in nanoseconds by this executor's clock. This is not the same asSystem.nanoTime()for two reasons:- We apply a fixed offset to the
nanoTime - Implementations (in particular EmbeddedEventLoop) may use their own time source so they can control time for testing purposes.
- We apply a fixed offset to the
-
nanoTime
Deprecated.Use the non-staticticker()instead. -
deadlineToDelayNanos
Deprecated.Useticker()insteadGiven an arbitrary deadlinedeadlineNanos, calculate the number of nano seconds from nowdeadlineNanoswould expire.- Parameters:
deadlineNanos- An arbitrary deadline in nano seconds.- Returns:
- the number of nano seconds from now
deadlineNanoswould expire.
-
delayNanos
protected long delayNanos(long currentTimeNanos, long scheduledPurgeInterval) Returns the amount of time left until the scheduled task with the closest dead line is executed. -
initialNanoTime
Deprecated.Useticker()insteadThe initial value used for delay and computations based upon a monatomic time source.- Returns:
- initial value used for delay and computations based upon a monatomic time source.
-
cancelScheduledTasks
protected void cancelScheduledTasks()Cancel all scheduled tasks. This method MUST be called only whenEventExecutor.inEventLoop()istrue. -
pollScheduledTask
- See Also:
-
fetchFromScheduledTaskQueue
Fetch scheduled tasks from the internal queue and add these to the givenQueue.- Parameters:
taskQueue- the task queue into which the fetched scheduled tasks should be transferred.- Returns:
trueif we were able to transfer everything,falseif we need to call this method again as soon as there is space again intaskQueue.
-
pollScheduledTask
Return theRunnablewhich is ready to be executed with the givennanoTime. You should usegetCurrentTimeNanos()to retrieve the correctnanoTime. -
nextScheduledTaskNano
protected final long nextScheduledTaskNano()Return the nanoseconds until the next scheduled task is ready to be run or-1if no task is scheduled. -
nextScheduledTaskDeadlineNanos
protected final long nextScheduledTaskDeadlineNanos()Return the deadline (in nanoseconds) when the next scheduled task is ready to be run or-1if no task is scheduled. -
hasScheduledTasks
protected final boolean hasScheduledTasks()Returnstrueif a scheduled task is ready for processing. -
schedule
- Specified by:
schedulein interfaceEventExecutorGroup- Specified by:
schedulein interfaceScheduledExecutorService- Overrides:
schedulein classAbstractEventExecutor
-
schedule
- Specified by:
schedulein interfaceEventExecutorGroup- Specified by:
schedulein interfaceScheduledExecutorService- Overrides:
schedulein classAbstractEventExecutor
-
scheduleAtFixedRate
public ScheduledFuture<?> scheduleAtFixedRate(Runnable command, long initialDelay, long period, TimeUnit unit) - Specified by:
scheduleAtFixedRatein interfaceEventExecutorGroup- Specified by:
scheduleAtFixedRatein interfaceScheduledExecutorService- Overrides:
scheduleAtFixedRatein classAbstractEventExecutor
-
scheduleWithFixedDelay
public ScheduledFuture<?> scheduleWithFixedDelay(Runnable command, long initialDelay, long delay, TimeUnit unit) - Specified by:
scheduleWithFixedDelayin interfaceEventExecutorGroup- Specified by:
scheduleWithFixedDelayin interfaceScheduledExecutorService- Overrides:
scheduleWithFixedDelayin classAbstractEventExecutor
-
validateScheduled
Deprecated.will be removed in the future.Sub-classes may override this to restrict the maximal amount of time someone can use to schedule a task. -
beforeScheduledTaskSubmitted
protected boolean beforeScheduledTaskSubmitted(long deadlineNanos) Called from arbitrary non-EventExecutorthreads prior to scheduled task submission. Returnstrueif theEventExecutorthread should be woken immediately to process the scheduled task (if not already awake).If
falseis returned,afterScheduledTaskSubmitted(long)will be called with the same value after the scheduled task is enqueued, providing another opportunity to wake theEventExecutorthread if required.- Parameters:
deadlineNanos- deadline of the to-be-scheduled task relative togetCurrentTimeNanos()- Returns:
trueif theEventExecutorthread should be woken,falseotherwise
-
afterScheduledTaskSubmitted
protected boolean afterScheduledTaskSubmitted(long deadlineNanos) SeebeforeScheduledTaskSubmitted(long). Called only after that method returns false.- Parameters:
deadlineNanos- relative togetCurrentTimeNanos()- Returns:
trueif theEventExecutorthread should be woken,falseotherwise
-
ticker()instead