Click or drag to resize

IRetryStrategyNextDelay Method

Gets the next delay to use before resending a failed message (useful in cases where it is not a fixed number e.g. exponential backoff).

Namespace:  Couchbase.Lite.Util
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax
C#
TimeSpan NextDelay(
	bool increment
)

Parameters

increment
Type: SystemBoolean
Whether or not to count this call as a retry (otherwise it will just be a query)

Return Value

Type: TimeSpan
The next delay to use before retrying a failed message
See Also