Package io.micronaut.scheduling.executor
Interface ExecutorSelector
- All Known Implementing Classes:
DefaultExecutorSelector
public interface ExecutorSelector
Interface that allows customizing the selection of the
ExecutorService
to run an operation on.- Since:
- 1.0
- Author:
- Graeme Rocher
-
Method Summary
Modifier and TypeMethodDescriptionselect
(MethodReference<?, ?> method, ThreadSelection threadSelection) Select anExecutorService
for the givenMethodReference
.Obtain executor for the given name.
-
Method Details
-
select
Select anExecutorService
for the givenMethodReference
.- Parameters:
method
- TheMethodReference
threadSelection
- The thread selection mode- Returns:
- An optional
ExecutorService
. If anExecutorService
cannot be establishedOptional.empty()
is returned
-
select
Obtain executor for the given name.- Parameters:
name
- The name of the executor- Returns:
- An executor if it exists
- Since:
- 3.1.0
-