Package org.javacord.api.util.concurrent
Interface ThreadPool
-
public interface ThreadPoolThis class creates and contains thread pools which are used by Javacord.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.concurrent.ScheduledExecutorServicegetDaemonScheduler()Gets the used daemon scheduler.java.util.concurrent.ExecutorServicegetExecutorService()Gets the used executor service.java.util.concurrent.ScheduledExecutorServicegetScheduler()Gets the used scheduler.java.util.concurrent.ExecutorServicegetSingleDaemonThreadExecutorService(java.lang.String threadName)Gets an executor service which only uses a single daemon thread.java.util.concurrent.ExecutorServicegetSingleThreadExecutorService(java.lang.String threadName)Gets an executor service which only uses a single thread.java.util.Optional<java.util.concurrent.ExecutorService>removeAndShutdownSingleThreadExecutorService(java.lang.String threadName)Removes an existing executor service.
-
-
-
Method Detail
-
getExecutorService
java.util.concurrent.ExecutorService getExecutorService()
Gets the used executor service.- Returns:
- The used executor service.
-
getScheduler
java.util.concurrent.ScheduledExecutorService getScheduler()
Gets the used scheduler.- Returns:
- The used scheduler.
-
getDaemonScheduler
java.util.concurrent.ScheduledExecutorService getDaemonScheduler()
Gets the used daemon scheduler.- Returns:
- The used daemon scheduler.
-
getSingleThreadExecutorService
java.util.concurrent.ExecutorService getSingleThreadExecutorService(java.lang.String threadName)
Gets an executor service which only uses a single thread.- Parameters:
threadName- The thread name of the executor service. Will create a new one if the thread name is used the first time.- Returns:
- The executor service with the given thread name. Never
null!
-
getSingleDaemonThreadExecutorService
java.util.concurrent.ExecutorService getSingleDaemonThreadExecutorService(java.lang.String threadName)
Gets an executor service which only uses a single daemon thread.- Parameters:
threadName- The thread name of the executor service. Will create a new one if the thread name is used the first time.- Returns:
- The executor service with the given thread name. Never
null!
-
removeAndShutdownSingleThreadExecutorService
java.util.Optional<java.util.concurrent.ExecutorService> removeAndShutdownSingleThreadExecutorService(java.lang.String threadName)
Removes an existing executor service.This allows you to get a fresh executor service when calling
getSingleThreadExecutorService(String)again.- Parameters:
threadName- The thread name of the executor service.- Returns:
- The removed and shutdown executor service with the given thread name.
-
-