---
title: userInitiated
framework: dispatch
role: symbol
role_heading: Type Property
path: dispatch/dispatchqos/userinitiated
---

# userInitiated

The quality-of-service class for tasks that prevent the user from actively using your app.

## Declaration

```swift
static let userInitiated: DispatchQoS
```

## Discussion

Discussion User-initiated tasks are second only to user-interactive tasks in their priority on the system. Assign this class to tasks that provide immediate results for something the user is doing, or that would prevent the user from using your app. For example, you might use this quality-of-service class to load the content of an email that you want to display to the user.

## See Also

### Getting the Predefined QoS Objects

- [userInteractive](dispatch/dispatchqos/userinteractive.md)
- [default](dispatch/dispatchqos/default.md)
- [utility](dispatch/dispatchqos/utility.md)
- [background](dispatch/dispatchqos/background.md)
- [unspecified](dispatch/dispatchqos/unspecified.md)
