Interface IRetryPolicy
Interface for retry policies used in purchase operations.
Namespace: UnityEngine.Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public interface IRetryPolicy
Methods
ShouldRetry(IRetryPolicyInformation)
Determines if a retry should be attempted based on the provided information.
Declaration
Task<bool> ShouldRetry(IRetryPolicyInformation info)
Parameters
| Type | Name | Description |
|---|---|---|
| IRetryPolicyInformation | info | The retry policy information. |
Returns
| Type | Description |
|---|---|
| Task<bool> | A task that resolves to a boolean indicating whether a retry should be attempted. |