Hi,
I'm wondering how to implement a simple multi-threaded priority executor which doesn't live forever?
// This creates the threads as well, without using static variables
let ex = PriorityExecutor::new()?;
// do some work
// This will wait for all tasks to be completed and join the threads
drop(ex);
Thank you π