13 Sep
2018
13 Sep
'18
5:57 p.m.
On Thu, Sep 13, 2018 at 10:49 AM Sean Farrow via Boost-users
Are there functions within beast to allow me to start downloading multiple url’s in parallel and then handle each returned result with a different continuation function?
Yes. This is accomplished by calling `boost::beast::http::async_read` on two or more different instances of connected sockets. Regards