Hello,

I'm trying to develop a Desktop application that will send multiple request to a website and store the response. i want to do the requests in a separate threat so that the GUI will be responsive. I tried to use QNetworkAccessManager with run,qtconcurrent and i was not able to get success in achieving my goal. Can you guys give me some advice or ideas how can i implement multithreading with QNetworkAccessManager

example algorithm:
for(int i=0;i<1000;i++)
{
//send HTTP request using QNetworkAccessManager

} // should not affect the gui !!!!!!