---
title: pause()
framework: networkextension
role: symbol
role_heading: Type Method
path: networkextension/nefilterdataverdict/pause()
---

# pause()

Creates a verdict that tells the system to pause the flow.

## Declaration

```swift
class func pause() -> NEFilterDataVerdict
```

## Return Value

Return Value A NEFilterDataVerdict object.

## Discussion

Discussion After pausing the flow, the system doesn’t call any of the data provider’s handler callbacks until you resume the flow by calling resumeFlow(_:with:). You can pause TCP flows indefinitely. You can pause UDP flows for up to 10 seconds, after which the system drops the flow. Pausing a flow that’s already paused is an invalid operation.

## See Also

### Creating data verdicts

- [allow()](networkextension/nefilterdataverdict/allow().md)
- [drop()](networkextension/nefilterdataverdict/drop().md)
- [remediateVerdict(withRemediationURLMapKey:remediationButtonTextMapKey:)](networkextension/nefilterdataverdict/remediateverdict(withremediationurlmapkey:remediationbuttontextmapkey:).md)
- [needRules()](networkextension/nefilterdataverdict/needrules().md)
- [init(passBytes:peekBytes:)](networkextension/nefilterdataverdict/init(passbytes:peekbytes:).md)
