PSPDFLibraryIndexingPriority

Objective-C

enum PSPDFLibraryIndexingPriority {}

Swift

@frozen enum IndexingPriority : UInt

Specifies the priority indexing takes in task scheduling.

  • Specifies that the indexing must be done on a background priority queue.

    Declaration

    Objective-C

    PSPDFLibraryIndexingPriorityBackground

    Swift

    case background = 0
  • Specifies that indexing must be done on a low priority queue.

    Declaration

    Objective-C

    PSPDFLibraryIndexingPriorityLow

    Swift

    case low = 1
  • Specifies that indexing must be done on a high priority queue.

    Declaration

    Objective-C

    PSPDFLibraryIndexingPriorityHigh

    Swift

    case high = 2