Uses of Class
io.nitric.api.queue.Task
-
Packages that use Task Package Description io.nitric.api.queue Provides the Queue Service API. -
-
Uses of Task in io.nitric.api.queue
Methods in io.nitric.api.queue that return Task Modifier and Type Method Description Task
Task.Builder. build()
Task
FailedTask. getTask()
Methods in io.nitric.api.queue that return types with arguments of type Task Modifier and Type Method Description List<Task>
QueueClient. receive(int limit)
Return receive a maximum specified number of tasks from the queue.Methods in io.nitric.api.queue with parameters of type Task Modifier and Type Method Description void
QueueClient. send(Task task)
Send the given task to the client queue.FailedTask.Builder
FailedTask.Builder. task(Task task)
Set the task which failed.Method parameters in io.nitric.api.queue with type arguments of type Task Modifier and Type Method Description List<FailedTask>
QueueClient. sendBatch(List<Task> tasks)
Send the given tasks to the client queue in a batch, and return any tasks which failed to send.
-