Interface ExecutorComponent

All Known Implementing Classes:
DefaultExecutorComponent

public interface ExecutorComponent
  • Method Details

    • getOrCreateSingleThreadExecutor

      com.google.common.util.concurrent.ListeningExecutorService getOrCreateSingleThreadExecutor(String threadPoolName, String threadNameFormat)
    • getOrCreateFixedThreadPool

      com.google.common.util.concurrent.ListeningExecutorService getOrCreateFixedThreadPool(int nThreads, String threadNameFormat)
    • newSingleThreadExecutor

      com.google.common.util.concurrent.ListeningExecutorService newSingleThreadExecutor(String threadNameFormat)
    • newFixedThreadPool

      com.google.common.util.concurrent.ListeningExecutorService newFixedThreadPool(int nThreads, String threadNameFormat)
    • newCachedThreadPool

      com.google.common.util.concurrent.ListeningExecutorService newCachedThreadPool(String threadNameFormat)
    • getOrCreateCachedThreadPool

      com.google.common.util.concurrent.ListeningExecutorService getOrCreateCachedThreadPool(String threadNameFormat)