$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] [Beast] Downloading multiple urls in parallel
From: Vinnie Falco (vinnie.falco_at_[hidden])
Date: 2018-09-13 17:57:56
On Thu, Sep 13, 2018 at 10:49 AM Sean Farrow via Boost-users
<boost-users_at_[hidden]> wrote:
> 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