Done returns the context Done channel.
()
| 68 | |
| 69 | // Done returns the context Done channel. |
| 70 | func (m *Manager) Done() <-chan struct{} { |
| 71 | return m.ctx.Done() |
| 72 | } |
| 73 | |
| 74 | // IsDone checks whether the manager context is done. |
| 75 | func (m *Manager) IsDone() bool { |
no outgoing calls