Signal the background thread to shut down gracefully.
(&self)
| 103 | |
| 104 | /// Signal the background thread to shut down gracefully. |
| 105 | fn shutdown(&self) { |
| 106 | let _ = self.sender.send(WorkerMessage::Shutdown); |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | /// Simple file-based telemetry logger. |