MCPcopy Create free account
hub / github.com/NVIDIA/OpenShell / watch_sandboxes

Method watch_sandboxes

crates/openshell-server/src/compute/mod.rs:248–256  ·  view source on GitHub ↗
(
        &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)]

Callers 1

watch_loopMethod · 0.45

Calls 1

clientMethod · 0.80

Tested by

no test coverage detected