()
| 216 | } |
| 217 | |
| 218 | func (m *Manager) thread() { |
| 219 | for { |
| 220 | queueEntry := <-m.queue |
| 221 | m.checkChunk(queueEntry.request, queueEntry.response) |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | func (m *Manager) checkChunk(req *Request, response chan Response) { |
| 226 | if nil == response { |
no test coverage detected