Package io.micronaut.scheduling
Interface TaskExecutors
-
public interface TaskExecutorsThe names of common task schedulers.- Since:
- 1.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringIOThe name of theExecutorServiceused to schedule I/O tasks.static java.lang.StringMESSAGE_CONSUMERThe name of theScheduledExecutorServiceused to run message consumers such as a Kafka or RabbitMQ listeners.static java.lang.StringSCHEDULEDThe name of theScheduledExecutorServiceused to schedule background tasks.
-
-
-
Field Detail
-
IO
static final java.lang.String IO
The name of theExecutorServiceused to schedule I/O tasks.- See Also:
- Constant Field Values
-
SCHEDULED
static final java.lang.String SCHEDULED
The name of theScheduledExecutorServiceused to schedule background tasks.- See Also:
- Constant Field Values
-
MESSAGE_CONSUMER
static final java.lang.String MESSAGE_CONSUMER
The name of theScheduledExecutorServiceused to run message consumers such as a Kafka or RabbitMQ listeners.- See Also:
- Constant Field Values
-
-