Method
watch_sandboxes
(
&self,
request: Request<WatchSandboxesRequest>,
)
Source from the content-addressed store, hash-verified
| 246 | } |
| 247 | |
| 248 | async fn watch_sandboxes( |
| 249 | &self, |
| 250 | request: Request<WatchSandboxesRequest>, |
| 251 | ) -> Result<tonic::Response<Self::WatchSandboxesStream>, Status> { |
| 252 | let mut client = self.client(); |
| 253 | let response = client.watch_sandboxes(request).await?; |
| 254 | let stream = response.into_inner(); |
| 255 | Ok(tonic::Response::new(Box::pin(stream))) |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | #[derive(Clone)] |
Tested by
no test coverage detected