---
title: DISPATCH_QUEUE_PRIORITY_DEFAULT
framework: dispatch
role: symbol
role_heading: Global Variable
path: dispatch/dispatch_queue_priority_default
---

# DISPATCH_QUEUE_PRIORITY_DEFAULT

Tasks run at the default priority, which is equivalent to the default quality-of-service.

## Declaration

```swift
var DISPATCH_QUEUE_PRIORITY_DEFAULT: Int32 { get }
```

## Discussion

Discussion Use quality-of-service constants instead. This constant maps to the QOS_CLASS_DEFAULT class. Items dispatched to the queue run at the default priority; the queue is scheduled for execution after all high priority queues have been scheduled, but before any low priority queues have been scheduled.

## See Also

### Priorities

- [DISPATCH_QUEUE_PRIORITY_HIGH](dispatch/dispatch_queue_priority_high.md)
- [DISPATCH_QUEUE_PRIORITY_LOW](dispatch/dispatch_queue_priority_low.md)
- [DISPATCH_QUEUE_PRIORITY_BACKGROUND](dispatch/dispatch_queue_priority_background.md)
