Check status of multiple urls (concurrent)
-
I have a
QMap<QString, QUrl>and I wanted to do aHEADrequest in all of them (concurrently) and check if the returnedcontent-typeis a video.I was wondering, how can I do this and in a concurrently way?
@zefex Using https://doc.qt.io/qt-5/qnetworkaccessmanager.html
It is assynchronous and you can do as many requests in parallel as you like.