Quote Originally Posted by wysota View Post
It will not affect your GUI.


You are probably not running an event loop in that thread.


Sure, just state what the actual task is
I am new to qt. I am not able to find any good resource in multithreading. I just want to do fuzzing on web applictions which i was assigned to do testing.

Here is exactly what i wanted:
I need to send more than 1000 or 10,000 requests to a web application without affecting the GUI(i tried to run 10,000 request in main thread, it's affecting the gui, not able to access any other items). so i wanted to run the QNAM &loop in a separate thread or any other way in such a way that it should not affect the other tasks. Can you give me a sample snippet or tutorial links to achieve this

Thank you