wait: More Control
While gather waits for all tasks, wait gives you more control:
Learning Objectives
Lesson Outline
While gather waits for all tasks, wait gives you more control:
| Feature | gather | wait |
|---|---|---|
| Input | Coroutines or Tasks | Tasks only |
| Returns | List of results | (done, pending) sets |
| Order | Preserves input order | Unordered sets |
| Control | All or nothing | FIRST_COMPLETED, etc. |