Java Executor Framework Cheat sheet
the methods supported by various types of Executor in Java: Executor Type Supported Methods SingleThreadExecutor execute(Runnable command) CachedThreadPool execute(Runnable command) submit(Runnable task) submit(Callable<T> task) shutdown() shutdownNow() isShutdown() isTerminated() awaitTermination(long timeout,…