SetUploadLowTransferRateTimeout
Sets the timeout in seconds of a low speed upload (ie transfer rate which is underneath the low transfer rate threshold).
By default this is set to 120 seconds. Setting this value to 0 will turn off the timeout.
tip
This timeout method does not work on Unity mobile platforms.
Method Parameters
Parameter | Description |
---|---|
timeoutSecs | The timeout in seconds |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
int timeoutSecs = 60;
_bc.SetUploadLowTransferRateTimeout(timeoutSecs);
int timeoutSecs = 60;
_bc->setUploadLowTransferRateTimeout(timeoutSecs);
int timeoutSecs = 60;
[_bc setUploadLowTransferRateTimeout:timeoutSecs];
// N/A
// N/A
int timeoutSecs = 60;
_bc.setUploadLowTransferRateTimeout(timeoutSecs:timeoutSecs);
// N/A
// N/A