Struct sc_telemetry::TelemetryWorker
source · pub struct TelemetryWorker { /* private fields */ }
Expand description
Telemetry worker.
It should run as a background task using the TelemetryWorker::run
method. This method
will consume the object and any further attempts of initializing a new telemetry through its
handle will fail (without being fatal).
Implementations§
source§impl TelemetryWorker
impl TelemetryWorker
sourcepub fn new(buffer_size: usize) -> Result<Self>
pub fn new(buffer_size: usize) -> Result<Self>
Instantiate a new TelemetryWorker
which can run in background.
Only one is needed per process.
sourcepub fn handle(&self) -> TelemetryWorkerHandle
pub fn handle(&self) -> TelemetryWorkerHandle
Get a new TelemetryWorkerHandle
.
This is used when you want to register with the TelemetryWorker
.