Interface IClientRetryPolicyContext
Retry policy context. See ShouldRetry(IClientRetryPolicyContext).
Namespace: Apache.Ignite.Core.Client
Assembly: Apache.Ignite.Core.dll
Syntax
public interface IClientRetryPolicyContext
Properties
Configuration
Gets the client configuration.
Declaration
IgniteClientConfiguration Configuration { get; }
Property Value
Type | Description |
---|---|
IgniteClientConfiguration |
Exception
Gets the exception that caused current retry iteration.
Declaration
Exception Exception { get; }
Property Value
Type | Description |
---|---|
Exception |
Iteration
Gets the current iteration.
Declaration
int Iteration { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Operation
Gets the operation type.
Declaration
ClientOperationType Operation { get; }
Property Value
Type | Description |
---|---|
ClientOperationType |