Start watching all managed sandbox containers.
(&self)
| 768 | |
| 769 | /// Start watching all managed sandbox containers. |
| 770 | pub async fn watch_sandboxes(&self) -> Result<WatchStream, ComputeDriverError> { |
| 771 | watcher::start_watch(self.client.clone()) |
| 772 | .await |
| 773 | .map_err(ComputeDriverError::from) |
| 774 | } |
| 775 | } |
| 776 | |
| 777 | #[cfg(test)] |
nothing calls this directly
no test coverage detected