The fetchDownloadListBackgroundResult() method returns the results of downloadListBackground() method call that has since completed. If a fault occurred during the asynchronous execution of the downloadListBackground() method, that fault will be returned to the caller of fetchDownloadListBackgroundResult(). Otherwise, the return value of this method will be structured the same as the value returned by a successful call to the downloadListBackgroundResult() method.
If the method has not yet completed, a fault will be thrown. The status a downloadListBackground() call can be checked using the getBackgroundTaskStatus() method.
If the method has not yet completed, a fault will be thrown. The status a downloadListBackground() call can be checked using the getBackgroundTaskStatus() method.
Input
[vrtypens:fetchBackgroundResultArgs]
session_id [xsd:string] (required)
Your API session id.
background_task_id [xsd:int]
Output
Examples
Perl
$vrapi->fetchDownloadListBackgroundResult( { session_id => $sid, background_task_id => $bg_id, } );
PHP
$vrapi->fetchDownloadListBackgroundResult( array( 'session_id' => $sid, 'background_task_id' => $bg_id, ) );
Ruby
vr.fetchDownloadListBackgroundResult( { 'session_id' => sid, 'background_task_id' => bg_id, } )
C#.NET
fetchBackgroundResultArgs objFBResult = new fetchBackgroundResultArgs(); objFBResult.session_id = _sSessionId; objFBResult.background_task_id = iBackgroundTaskId; objVR.fetchDownloadListBackgroundResult(objFBResult);