Continues a task with the equivalent of a Task-based while loop, where the body of the loop is a task continuation.
(Callable<Boolean> predicate,
Continuation<Void, Task<Void>> continuation)
| 304 | * a task continuation. |
| 305 | */ |
| 306 | public Task<Void> continueWhile(Callable<Boolean> predicate, |
| 307 | Continuation<Void, Task<Void>> continuation) { |
| 308 | return continueWhile(predicate, continuation, immediateExecutor); |
| 309 | } |
| 310 | |
| 311 | /** |
| 312 | * Continues a task with the equivalent of a Task-based while loop, where the body of the loop is |