PillarboxQueueStrategy

public enum PillarboxQueueStrategy

The queuing strategy to use when peeking and popping items off the queue.

  • When using the first in first out strategy, items are popped from the end of the queue. Briefly: Items pushed first are popped first.

    Declaration

    Swift

    case fifo
  • When using the last in first out strategy, items are popped from the start of the queue. Briefly: Items pushed last are popped first.

    Declaration

    Swift

    case lifo