static TaskId |
BackgroundTaskRequest.enqueue(TaskRequest taskRequest) |
Creates a new fire-and-forget task based on a given taskRequest.
|
static TaskId |
BackgroundTaskRequest.enqueue(UUID id,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on a given taskRequest.
|
TaskId |
TaskRequestScheduler.enqueue(TaskRequest taskRequest) |
Creates a new fire-and-forget task based on a given taskRequest.
|
TaskId |
TaskRequestScheduler.enqueue(UUID id,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on a given taskRequest.
|
static TaskId |
BackgroundTaskRequest.schedule(Instant instant,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static TaskId |
BackgroundTaskRequest.schedule(LocalDateTime localDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static TaskId |
BackgroundTaskRequest.schedule(OffsetDateTime offsetDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static TaskId |
BackgroundTaskRequest.schedule(ZonedDateTime zonedDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static TaskId |
BackgroundTaskRequest.schedule(UUID id,
Instant instant,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static TaskId |
BackgroundTaskRequest.schedule(UUID id,
LocalDateTime localDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static TaskId |
BackgroundTaskRequest.schedule(UUID id,
OffsetDateTime offsetDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static TaskId |
BackgroundTaskRequest.schedule(UUID id,
ZonedDateTime zonedDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(Instant instant,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(LocalDateTime localDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(OffsetDateTime offsetDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(ZonedDateTime zonedDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(UUID id,
Instant instant,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(UUID id,
LocalDateTime localDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(UUID id,
OffsetDateTime offsetDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
TaskId |
TaskRequestScheduler.schedule(UUID id,
ZonedDateTime zonedDateTime,
TaskRequest taskRequest) |
Creates a new fire-and-forget task based on the given taskRequest and schedules it to be enqueued at the given moment of time.
|
static String |
BackgroundTaskRequest.scheduleRecurrently(String cron,
TaskRequest taskRequest) |
Creates a new recurring task based on the given cron expression and the given taskRequest.
|
static String |
BackgroundTaskRequest.scheduleRecurrently(String id,
String cron,
TaskRequest taskRequest) |
Creates a new or alters the existing recurring task based on the given id, cron expression and taskRequest.
|
static String |
BackgroundTaskRequest.scheduleRecurrently(String id,
String cron,
ZoneId zoneId,
TaskRequest taskRequest) |
Creates a new or alters the existing recurring task based on the given id, cron expression, ZoneId and taskRequest.
|
static String |
BackgroundTaskRequest.scheduleRecurrently(String id,
Duration duration,
TaskRequest taskRequest) |
Creates a new or alters the existing recurring task based on the given id, duration and taskRequest.
|
static String |
BackgroundTaskRequest.scheduleRecurrently(Duration duration,
TaskRequest taskRequest) |
Creates a new recurring task based on the given duration and the given taskRequest.
|
String |
TaskRequestScheduler.scheduleRecurrently(String cron,
TaskRequest taskRequest) |
Creates a new recurring task based on the given cron expression and the given taskRequest.
|
String |
TaskRequestScheduler.scheduleRecurrently(String id,
String cron,
TaskRequest taskRequest) |
Creates a new or alters the existing recurring task based on the given id, cron expression and taskRequest.
|
String |
TaskRequestScheduler.scheduleRecurrently(String id,
String cron,
ZoneId zoneId,
TaskRequest taskRequest) |
Creates a new or alters the existing recurring task based on the given id, cron expression, ZoneId and taskRequest.
|
String |
TaskRequestScheduler.scheduleRecurrently(String id,
Duration duration,
TaskRequest taskRequest) |
Creates a new or alters the existing recurring task based on the given id, duration and taskRequest.
|
String |
TaskRequestScheduler.scheduleRecurrently(Duration duration,
TaskRequest taskRequest) |
Creates a new recurring task based on the given duration and the given taskRequest.
|