Class SameThreadExecutorService

java.lang.Object
java.util.concurrent.AbstractExecutorService
org.apache.lucene.util.SameThreadExecutorService
All Implemented Interfaces:
Executor, ExecutorService

public final class SameThreadExecutorService extends AbstractExecutorService
An ExecutorService that executes tasks immediately in the calling thread during submit.
NOTE: This API is for internal purposes only and might change in incompatible ways in the next release.
  • Constructor Details

    • SameThreadExecutorService

      public SameThreadExecutorService()
  • Method Details

    • execute

      public void execute(Runnable command)
    • shutdownNow

      public List<Runnable> shutdownNow()
    • shutdown

      public void shutdown()
    • isTerminated

      public boolean isTerminated()
    • isShutdown

      public boolean isShutdown()
    • awaitTermination

      public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException
      Throws:
      InterruptedException