CompletionService.take().isDone() always true?
- by jfager
Is it safe to assume that
java.util.concurrent.CompletionService.take().isDone()
will always return true? If so, why does take() return a Future, rather than the value directly? If not, what does "completed task" as used in the documentation mean?