(&self, cmd: Command)
| 597 | |
| 598 | #[instrument(level = "debug")] |
| 599 | pub(crate) fn send(&self, cmd: Command) { |
| 600 | self.inner_cmd_tx |
| 601 | .send((OpenTelemetryContext::obtain(), cmd)) |
| 602 | .expect("coordinator unexpectedly gone"); |
| 603 | } |
| 604 | } |
| 605 | |
| 606 | /// A coordinator client that is bound to a connection. |
no test coverage detected