[−][src]Trait sp_core::traits::RuntimeSpawn
Runtime spawn extension.
Required methods
pub fn spawn_call(
&self,
dispatcher_ref: u32,
func: u32,
payload: Vec<u8>
) -> u64
[src]
&self,
dispatcher_ref: u32,
func: u32,
payload: Vec<u8>
) -> u64
Create new runtime instance and use dynamic dispatch to invoke with specified payload.
Returns handle of the spawned task.
Function pointers (dispatcher_ref
, func
) are WASM pointer types.
pub fn join(&self, handle: u64) -> Vec<u8>ⓘ
[src]
Join the result of previously created runtime instance invocation.