Package io.micronaut.scheduling.executor
Interface ExecutorSelector
-
- All Known Implementing Classes:
DefaultExecutorSelector
public interface ExecutorSelectorInterface that allows customizing the selection of theExecutorServiceto run an operation on.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Optional<java.util.concurrent.ExecutorService>select(io.micronaut.inject.MethodReference method, ThreadSelection threadSelection)Select anExecutorServicefor the givenMethodReference.java.util.Optional<java.util.concurrent.ExecutorService>select(java.lang.String name)Obtain executor for the given name.
-
-
-
Method Detail
-
select
java.util.Optional<java.util.concurrent.ExecutorService> select(io.micronaut.inject.MethodReference method, ThreadSelection threadSelection)Select anExecutorServicefor the givenMethodReference.- Parameters:
method- TheMethodReferencethreadSelection- The thread selection mode- Returns:
- An optional
ExecutorService. If anExecutorServicecannot be establishedOptional.empty()is returned
-
select
java.util.Optional<java.util.concurrent.ExecutorService> select(java.lang.String name)
Obtain executor for the given name.- Parameters:
name- The name of the executor- Returns:
- An executor if it exists
- Since:
- 3.1.0
-
-