Method
create_run
(
create_req: CreateRt,
timeout_handle: VmShutdownHandle,
wakeup_rx: UnboundedReceiver<()>,
)
Source from the content-addressed store, hash-verified
| 135 | } |
| 136 | |
| 137 | async fn create_run( |
| 138 | create_req: CreateRt, |
| 139 | timeout_handle: VmShutdownHandle, |
| 140 | wakeup_rx: UnboundedReceiver<()>, |
| 141 | ) { |
| 142 | let mut rt = Self::create_init(create_req, timeout_handle, wakeup_rx).await; |
| 143 | rt.run().await; |
| 144 | } |
| 145 | |
| 146 | fn create_isolate( |
| 147 | extension_factory: &ExtensionFactory, |
Callers
nothing calls this directly
Tested by
no test coverage detected