Wait blocks until at least minCompletions inflight operations have completed, then appends all completed inflight operations to cs and returns the updated slice. If Wait returns a non-nil error, no Queue methods may be subsequently called except Destroy. Preconditions: - 0 <= minCompletions <= Cap
(cs []Completion, minCompletions int)
| 58 | // Preconditions: |
| 59 | // - 0 <= minCompletions <= Cap(). |
| 60 | Wait(cs []Completion, minCompletions int) ([]Completion, error) |
| 61 | } |
| 62 | |
| 63 | // Request is defined in aio_unsafe.go. |
no outgoing calls