uploadSettings.autoRecoveryTimeout Property ActiveX/Java Uploader JavaScript

Supported browsers: Internet ExplorerFirefoxGoogle ChromeSafari

Gets or sets an interval in which ActiveX/Java Uploader should try to resume the upload if it was interrupted.

Syntax

JavaScript Initialize
$au.uploader({
    uploadSettings: {
        //...other params...
        autoRecoveryTimeout: 5000,
        //...other params...
    }
})
Get/Set Value at Runtime
$au.uploader('uploaderID').uploadSettings().autoRecoveryTimeout(value);
value = $au.uploader('uploaderID').uploadSettings().autoRecoveryTimeout();

Property Value

Type: Number

The number of milliseconds the ActiveX/Java Uploader should wait between attempts.

Default value is 5000.

Remarks

Note

ActiveX/Java UploaderExpress does not support automatic upload recovery. See the Upload Suite Editions topic for details.

This parameter takes effect if only the autoRecoveryMaxAttemptCount is greater than 1.

Note

ActiveX/Java Uploader tries to resend the request that has failed. If the request (package) contains more than one file, these files will be resent again. It means that if you use the auto-recovering feature, the optimal value for the filesPerPackage property would be 1.

See Also

Reference