Interface IClientRetryPolicy
Client retry policy determines whether client operations that have failed due to a connection issue should be retried.
Namespace: Apache.Ignite.Core.Client
Assembly: Apache.Ignite.Core.dll
Syntax
public interface IClientRetryPolicy
Methods
ShouldRetry(IClientRetryPolicyContext)
Gets a value indicating whether a client operation that has failed due to a connection issue should be retried.
Declaration
bool ShouldRetry(IClientRetryPolicyContext context)
Parameters
Type | Name | Description |
---|---|---|
IClientRetryPolicyContext | context | Operation context. |
Returns
Type | Description |
---|---|
System.Boolean |
|