(&self, pl: &integration_pb::StatusEvent)
| 411 | } |
| 412 | |
| 413 | async fn status_event(&self, pl: &integration_pb::StatusEvent) -> Result<()> { |
| 414 | STATUS_EVENTS.write().await.push(pl.clone()); |
| 415 | Ok(()) |
| 416 | } |
| 417 | |
| 418 | async fn location_event(&self, pl: &integration_pb::LocationEvent) -> Result<()> { |
| 419 | LOCATION_EVENTS.write().await.push(pl.clone()); |