waitForFileDownloadsToComplete
void session.waitForFileDownloadsToComplete() (enterprise edition only)
Description
Waits for any file downloads to complete before returning. This should be used in tandem with the session.downloadFile method call that takes the "doLazy" paraameter.
Change Log
Version |
Description |
5.5.43a |
Available in Enterprise edition. |
Examples
Set the user agent
// Download five image files concurrently.
for( i = 0; i < 5; i++ )
{
session.downloadFile( "http://www.mysite.com/images/image" + i + ".jpg", "output/image" + i + ".jpg", 5, true );
}
// Wait for all of the images to finish downloading before continuing.
session.waitForFileDownloadsToComplete();