for a application I am currently developing, I need to start instances of a shared library in parallel.
As I want to have fine-grained control over the amount of parallel instances (-license of library restricts amount of parallelism to a fixed amount of threads), I am wondering if there's a easy way to create&maintain a own thread pool in the native module?
Thanks!