Method
exec_sandbox
(
&self,
_request: tonic::Request<ExecSandboxRequest>,
)
Source from the content-addressed store, hash-verified
| 312 | } |
| 313 | |
| 314 | async fn exec_sandbox( |
| 315 | &self, |
| 316 | _request: tonic::Request<ExecSandboxRequest>, |
| 317 | ) -> Result<Response<Self::ExecSandboxStream>, Status> { |
| 318 | let (_tx, rx) = mpsc::channel(1); |
| 319 | Ok(Response::new(tokio_stream::wrappers::ReceiverStream::new( |
| 320 | rx, |
| 321 | ))) |
| 322 | } |
| 323 | |
| 324 | type ExecSandboxInteractiveStream = |
| 325 | tokio_stream::wrappers::ReceiverStream<Result<ExecSandboxEvent, Status>>; |
Tested by
no test coverage detected