Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a single QNetworkAccessManager object (as Qt docs recommend). However, I need to obtain a request from another thread, i.e. not the thread created the QNetworkAccessManager object.

This questions has two aspects:

  1. As the functions (get, post ... ) are not marked threadsafe I assume that I need to use a lock before calling them.
  2. But even if I make sure there are no 2 threads calling in parallel, issues could arise: So it could happen a QObject parent child relationship is set, but from objects in different threads. For that I would need to know the internals of QNetworkAccessManager

So is it allowed to call get/post from another thread?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Is QNetworkAccessManager get/post calls from different threads possible?

I found QNetworkAccessManager from ThreadPool discussed here some time ago.

And because QNetworkAccessManager Class reference says:

All functions in this class are reentrant.

And the reentrance explained in Reentrancy and Thread-Safety:

... a class is said to be reentrant if its member functions can be called safely from multiple threads, as long as each thread uses a different instance of the class. The class is thread-safe if its member functions can be called safely from multiple threads, even if all the threads use the same instance of the class.

So, the answer to this original question is: for QNetworkAccessManager to be safe for multiple calls from different threads you need one class instance per thread.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...