Interface TaskProcessor<T>


  • public interface TaskProcessor<T>
    An interface to be implemented by clients for task execution.
    • Method Detail

      • process

        TaskProcessor.ProcessingResult process​(java.util.List<T> tasks)
        For batched mode a collection of tasks is run at a time. The result is provided for the aggregated result, and all tasks are handled in the same way according to what is returned (for example are rescheduled, if the error is transient).