()
| 225 | } |
| 226 | |
| 227 | func (info *RuntimeInfo) recvResponseLoop() { |
| 228 | if info.WithStreamMode { |
| 229 | info.runtimeWaitGroup.Add(1) |
| 230 | info.recvHTTPResponseLoop() |
| 231 | } else { |
| 232 | info.runtimeWaitGroup.Add(1) |
| 233 | info.recvGenericResponseLoop() |
| 234 | } |
| 235 | } |
| 236 | |
| 237 | func (info *RuntimeInfo) recvGenericResponseLoop() { |
| 238 | defer info.stopRuntime() |
no test coverage detected