I have a main application that needs to handle multiple threads. I have stored the different threads in a QThreadPool which then handles the execution. But I need to access specific threads from this pool either from the main application that contains the QThreadPool (which might be easier to accomplish) or from the single threads directly.

Is it possible to access a specific thread when using QTreadPool or do I have to use something else instead?