Quote Originally Posted by etru1927 View Post
Is that what "scheduled" means?
Yes.

If so I guess I'll have to work on my computer science jargon!
I don't think this is CS jargon Scheduling means putting something in sequence (order) and that's exactly what happens here.

If that is the case, what other mechanisms may I use to solve this problem? QTcpSocket?
Depends what you need. QHttp is fine, just use it accordingly. If you really need more than one request processed at the same time, use more than one QHttp object. In general you should connect to signals and process them in your slots. Remember that Qt is event driven, there is no linear flow here, you need to think in terms of events and react to them.