ARTRetryAttempt

Objective-C


@interface ARTRetryAttempt : NSObject

Swift

class RetryAttempt : NSObject

Describes an intention to retry an operation.

  • Unavailable

    Undocumented

    Declaration

    Objective-C

    - (instancetype)init NS_UNAVAILABLE;
  • id

    A unique identifier for this retry attempt, for logging purposes.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSUUID *_Nonnull id;

    Swift

    var id: UUID { get }
  • The duration that should we should wait before performing this retry of the operation.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSTimeInterval delay;

    Swift

    var delay: TimeInterval { get }