Is there an example where I am able to do overlapping HTTPS requests while getting the returned results as they arrive. Language which supports threads to do this?
Any examples of this would be much appreciated!
Thank you.
curl multi-request functionality may be useful in this case. The example is with regular http but should work with https too. If you need to process data as they come, use curl's write handler functions set by CURLOPT_WRITEFUNCTION option.