Multithreading recommendation

Hello,

Most of the modern tutorials for multithreading in Java make use of the Executors class, however I am unable to find an equivalent microej library.

What is the recommended approach for multithreading with microej?

Hello @scottiedog45,

Our current implementation of the Java Executor framework is limited to the SingleThreadExecutor class.

For multithreading, you will have to manage your Thread instances by yourself.

Regards,