pub async fn execute_thread_async(
name: String,
run: ThreadRunAsync,
sender: Sender<()>,
receivers: Vec<Receiver<()>>,
world: SharedWorld,
)
Expand description
Long running task of a System
that is executed in a separate thread.