Errors

enum Errors : Error

Error types emitted by KVHeavyTasksManager operations.

Note

These errors cover configuration and queue-capacity conditions that prevent a task from executing under the current constraints.
  • The configured maximum number of running tasks is invalid (<= 0).

    Declaration

    Swift

    case invalidConcurrencyConfiguration
  • A task could not be enqueued due to priority/queue constraints.

    Declaration

    Swift

    case taskEvictedDueToPriorityConstraints(K)

    Parameters

    key

    The key of the task that was evicted.