Done decrements the WaitGroup counter by one.
()
| 17 | |
| 18 | // Done decrements the WaitGroup counter by one. |
| 19 | func (w *Wait) Done() { |
| 20 | w.wg.Done() |
| 21 | } |
| 22 | |
| 23 | // Wait waits until the WaitGroup counter is zero. |
| 24 | func (w *Wait) Wait() { |
no outgoing calls