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.
Parameters
None
Return Values
None
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();
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();
todd on 03/27/2012 at 4:48 pm
- Printer-friendly version
- Login or register to post comments