CachingTaskStatus

@objc(THEOplayerCachingTaskStatus)
public enum CachingTaskStatus : Int

The status of a caching task.

  • CachingTaskStatus.idle: The task has been created, but has not started downloading content.
  • CachingTaskStatus.loading: The task is currently downloading the content.
  • CachingTaskStatus.done: The task has finished downloading all content.
  • CachingTaskStatus.error: The task has encountered an error while downloading or evicting content.
  • CachingTaskStatus.evicted: All data associated with the task has been removed because the task expired or the user invoked the remove method.
  • The raw value of type String.

    Declaration

    Swift

    public var _rawValue: String { get set }