serverProgressReporter adapts *Server to the progressReporter interface.
| 32 | |
| 33 | // serverProgressReporter adapts *Server to the progressReporter interface. |
| 34 | type serverProgressReporter struct { |
| 35 | server *Server |
| 36 | } |
| 37 | |
| 38 | func (r *serverProgressReporter) done() <-chan struct{} { |
| 39 | return r.server.backgroundCtx.Done() |
nothing calls this directly
no outgoing calls
no test coverage detected