-
- All Known Implementing Classes:
ThreadServiceFinder.DefaultProvider
public interface ThreadServiceProviderThis interface describes a provider of thread's service.- Version:
- 17.0 2020-01-04 14:41:35
- Author:
- Stéphane GALLAND
- Maven Group Id:
- org.arakhne.afc.core
- Maven Artifact Id:
- vmutils
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutorServicegetExecutorService()Replies the thread executor for this provider.ScheduledExecutorServicegetScheduledExecutorService()Replies the scheduled thread executor for this provider.
-
-
-
Method Detail
-
getExecutorService
@Pure ExecutorService getExecutorService()
Replies the thread executor for this provider.- Returns:
- the default executor service.
-
getScheduledExecutorService
@Pure ScheduledExecutorService getScheduledExecutorService()
Replies the scheduled thread executor for this provider.- Returns:
- the default scheduled executor service.
-
-