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