(&self)
| 225 | } |
| 226 | |
| 227 | pub async fn published_inspectors(&self) -> Vec<PublishedInspector> { |
| 228 | let Some(registry) = self.registry.as_ref() else { |
| 229 | return Vec::new(); |
| 230 | }; |
| 231 | registry.read_live_entries().await |
| 232 | } |
| 233 | |
| 234 | pub async fn ensure_polled_agent(&self, process_identifier: i64) -> Result<(), String> { |
| 235 | { |
no test coverage detected