Package org.kie.api.concurrent
Interface KieExecutors
-
- All Superinterfaces:
Comparable<KieService>,KieService
public interface KieExecutors extends KieService
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classKieExecutors.Pool
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> CompletionService<T>getCompletionService()ExecutorServicegetExecutor()ExecutorServicenewFixedThreadPool()ExecutorServicenewFixedThreadPool(int nThreads)ExecutorServicenewSingleThreadExecutor()-
Methods inherited from interface org.kie.api.internal.utils.KieService
compareTo, servicePriority
-
-
-
-
Method Detail
-
getExecutor
ExecutorService getExecutor()
-
newSingleThreadExecutor
ExecutorService newSingleThreadExecutor()
-
newFixedThreadPool
ExecutorService newFixedThreadPool()
-
newFixedThreadPool
ExecutorService newFixedThreadPool(int nThreads)
-
getCompletionService
<T> CompletionService<T> getCompletionService()
-
-