Hi I have a question ; )...

I want to use QThreadPool to run several QRunnble Tasks concurrent.

f.e. There is a machine with 8 cpu's.
I want to start 8 Runnbles. But after 5 seconds my mainthread want to know the status of each runnable.

t1: 10% finished
t2: 70% finished
and so on....

What is the easiest approach to query a member of a QRunnable, while executing?


thanks in advance