Done calls Done() on the WaitGroup.
()
| 226 | |
| 227 | // Done calls Done() on the WaitGroup. |
| 228 | func (lc *Closer) Done() { |
| 229 | if lc == nil { |
| 230 | return |
| 231 | } |
| 232 | lc.waiting.Done() |
| 233 | } |
| 234 | |
| 235 | // Wait waits on the WaitGroup. (It waits for NewCloser's initial value, AddRunning, and Done |
| 236 | // calls to balance out.) |
no outgoing calls