Enqueue the given response for delivery to the controller clients.
(&self, response: ComputeControllerResponse)
| 426 | |
| 427 | /// Enqueue the given response for delivery to the controller clients. |
| 428 | fn deliver_response(&self, response: ComputeControllerResponse) { |
| 429 | // Failure to send means the `ComputeController` has been dropped and doesn't care about |
| 430 | // responses anymore. |
| 431 | let _ = self.response_tx.send(response); |
| 432 | } |
| 433 | |
| 434 | /// Enqueue the given introspection updates for recording. |
| 435 | fn deliver_introspection_updates(&self, type_: IntrospectionType, updates: Vec<(Row, Diff)>) { |
no test coverage detected