SetAuthenticationPacketTimeout
Sets the authentication packet timeout which is tracked separately from all other packets. Note that authentication packets are never retried and so this value represents the total time a client would wait to receive a reply to an authentication API call.
By default this timeout is set to 15 seconds.
Method Parameters
Parameter | Description |
---|---|
timeoutSecs | The timeout in seconds. |
Usage
http://localhost:3000
- C#
- C++
- Objective-C
- Java
- JavaScript
- Dart
- Cloud Code
- Raw
int timeoutInSeconds = 30;
_bc.SetAuthenticationPacketTimeout(timeoutInSeconds);
int timeoutInSeconds = 30;
_bc->setAuthenticationPacketTimeout(timeoutInSeconds);
int timeoutInSeconds = 30;
[_bc setAuthenticationPacketTimeout:timeoutInSeconds];
int timeoutInSeconds = 30;
_bc.setAuthenticationPacketTimeout(timeoutInSeconds);
// N/A
int timeoutInSeconds = 30;
_bc.setAuthenticationPacketTimeout(timeoutInSeconds:timeoutInSeconds);
// N/A
// N/A