Update kdoc

This commit is contained in:
Florian Renaud 2022-01-20 10:49:02 +01:00
parent 9ebcb3ed52
commit 879d5eb5f6
1 changed files with 2 additions and 1 deletions

View File

@ -33,7 +33,8 @@ import java.io.IOException
*
* @param globalErrorReceiver will be use to notify error such as invalid token error. See [GlobalError]
* @param canRetry if set to true, the request will be executed again in case of error, after a delay
* @param maxDelayBeforeRetry the max delay to wait before a retry
* @param maxDelayBeforeRetry the max delay to wait before a retry. Note that in the case of a 429, if the provided delay exceeds this value, the error will
* be propagated as it does not make sense to retry it with a shorter delay.
* @param maxRetriesCount the max number of retries
* @param requestBlock a suspend lambda to perform the network request
*/