Sends stop signal through contained server handle.
(&self, graceful: bool)
| 59 | |
| 60 | /// Sends stop signal through contained server handle. |
| 61 | pub(crate) fn stop(&self, graceful: bool) { |
| 62 | #[allow(clippy::let_underscore_future)] |
| 63 | let _ = self.inner.lock().as_ref().unwrap().stop(graceful); |
| 64 | } |
| 65 | } |
no outgoing calls
no test coverage detected