Interface IRetryPolicyInformation
Interface for providing information about retry policy attempts.
Namespace: UnityEngine.Purchasing
Assembly: Unity.Purchasing.dll
Syntax
public interface IRetryPolicyInformation
Properties
NumberOfAttempts
Gets the total number of attempts made for the current operation. Includes the initial attempt plus all retry attempts.
Declaration
int NumberOfAttempts { get; }
Property Value
Type | Description |
---|---|
int |
TimeSinceFirstAttempt
Gets the time elapsed since the first attempt was made, in seconds. Used to determine if retry timeouts have been exceeded.
Declaration
float TimeSinceFirstAttempt { get; }
Property Value
Type | Description |
---|---|
float |