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