Queue queue = QueueFactory.getQueue("findOwner");
TaskHandle taskHandle = queue.add(TaskOptions.Builder.withPayload(new FindOwnerToAcceptRental2.FindOwnerToAcceptRentalTask(idOfFindOwner4RentalEntity)).countdownMillis(countdownMillis));
}
lets say for exemple that countdownMillis equals to 10 minutes.
let's say that something happens let's say 1 minute after the "myFunctionThatAddTaskToTaskQueue" is called and so NOW I would like the task (the task that is already in the queue) to be handled not in 9 minutes but in 2 minutes. is it possible? if yes can you tell me how...