Class MutinyScheduler

  • All Implemented Interfaces:
    java.util.concurrent.Executor, java.util.concurrent.ExecutorService, java.util.concurrent.ScheduledExecutorService

    public class MutinyScheduler
    extends java.util.concurrent.ScheduledThreadPoolExecutor
    Implementation of ScheduledThreadPoolExecutor delegating the execution of the task to a configured Executor. Important: Future.get() and Future.get(long, TimeUnit) are not supported.
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.util.concurrent.ThreadPoolExecutor

        java.util.concurrent.ThreadPoolExecutor.AbortPolicy, java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy, java.util.concurrent.ThreadPoolExecutor.DiscardOldestPolicy, java.util.concurrent.ThreadPoolExecutor.DiscardPolicy
    • Constructor Summary

      Constructors 
      Constructor Description
      MutinyScheduler​(java.util.concurrent.Executor executor)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected <V> java.util.concurrent.RunnableScheduledFuture<V> decorateTask​(java.lang.Runnable runnable, java.util.concurrent.RunnableScheduledFuture<V> task)  
      protected <V> java.util.concurrent.RunnableScheduledFuture<V> decorateTask​(java.util.concurrent.Callable<V> callable, java.util.concurrent.RunnableScheduledFuture<V> task)  
      • Methods inherited from class java.util.concurrent.ScheduledThreadPoolExecutor

        execute, getContinueExistingPeriodicTasksAfterShutdownPolicy, getExecuteExistingDelayedTasksAfterShutdownPolicy, getQueue, getRemoveOnCancelPolicy, schedule, schedule, scheduleAtFixedRate, scheduleWithFixedDelay, setContinueExistingPeriodicTasksAfterShutdownPolicy, setExecuteExistingDelayedTasksAfterShutdownPolicy, setRemoveOnCancelPolicy, shutdown, shutdownNow, submit, submit, submit
      • Methods inherited from class java.util.concurrent.ThreadPoolExecutor

        afterExecute, allowCoreThreadTimeOut, allowsCoreThreadTimeOut, awaitTermination, beforeExecute, finalize, getActiveCount, getCompletedTaskCount, getCorePoolSize, getKeepAliveTime, getLargestPoolSize, getMaximumPoolSize, getPoolSize, getRejectedExecutionHandler, getTaskCount, getThreadFactory, isShutdown, isTerminated, isTerminating, prestartAllCoreThreads, prestartCoreThread, purge, remove, setCorePoolSize, setKeepAliveTime, setMaximumPoolSize, setRejectedExecutionHandler, setThreadFactory, terminated, toString
      • Methods inherited from class java.util.concurrent.AbstractExecutorService

        invokeAll, invokeAll, invokeAny, invokeAny, newTaskFor, newTaskFor
      • Methods inherited from class java.lang.Object

        clone, equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.concurrent.ExecutorService

        awaitTermination, invokeAll, invokeAll, invokeAny, invokeAny, isShutdown, isTerminated
    • Constructor Detail

      • MutinyScheduler

        public MutinyScheduler​(java.util.concurrent.Executor executor)
    • Method Detail

      • decorateTask

        protected <V> java.util.concurrent.RunnableScheduledFuture<V> decorateTask​(java.lang.Runnable runnable,
                                                                                   java.util.concurrent.RunnableScheduledFuture<V> task)
        Overrides:
        decorateTask in class java.util.concurrent.ScheduledThreadPoolExecutor
      • decorateTask

        protected <V> java.util.concurrent.RunnableScheduledFuture<V> decorateTask​(java.util.concurrent.Callable<V> callable,
                                                                                   java.util.concurrent.RunnableScheduledFuture<V> task)
        Overrides:
        decorateTask in class java.util.concurrent.ScheduledThreadPoolExecutor