PriorityStrategy

public enum PriorityStrategy

Queueing priority strategy applied when scheduling provider work.

  • Last-in, first-out. Newest keys are served first. Oldest may be evicted when queue is full.

    Declaration

    Swift

    case LIFO
  • First-in, first-out. Oldest keys are served first. New arrivals may be rejected when full.

    Declaration

    Swift

    case FIFO