update generated.go after vexillographer change (docs only)
This commit is contained in:
parent
55a9db1994
commit
1342cc7f48
|
@ -424,7 +424,7 @@ func (o TransactionOptions) SetTimeout(param int64) error {
|
|||
return o.setOpt(500, b)
|
||||
}
|
||||
|
||||
// Set a maximum number of retries after which additional calls to ``onError`` will throw the most recently seen error code. Valid parameter values are ``[-1, INT_MAX]``. If set to -1, will disable the retry limit. Prior to API version 600, like all other transaction options, the retry limit must be reset after a call to ``onError``. If the API version 610 or greater, the retry limit is not reset after an ``onError`` call. Note that at all API versions, it is safe and legal to set the retry limit each time the transaction begins, so most code written assuming the older behavior can be upgraded to the newer behavior without requiring any modification, and the caller is not required to implement special logic in retry loops to only conditionally set this option.
|
||||
// Set a maximum number of retries after which additional calls to ``onError`` will throw the most recently seen error code. Valid parameter values are ``[-1, INT_MAX]``. If set to -1, will disable the retry limit. Prior to API version 610, like all other transaction options, the retry limit must be reset after a call to ``onError``. If the API version is 610 or greater, the retry limit is not reset after an ``onError`` call. Note that at all API versions, it is safe and legal to set the retry limit each time the transaction begins, so most code written assuming the older behavior can be upgraded to the newer behavior without requiring any modification, and the caller is not required to implement special logic in retry loops to only conditionally set this option.
|
||||
//
|
||||
// Parameter: number of times to retry
|
||||
func (o TransactionOptions) SetRetryLimit(param int64) error {
|
||||
|
|
Loading…
Reference in New Issue