---
title: Stream.Status.reading
framework: foundation
role: symbol
role_heading: Case
path: foundation/stream/status/reading
---

# Stream.Status.reading

Data is being read from the stream. This status would be returned if code on another thread were to call streamStatus on the stream while a read(_:maxLength:) call (InputStream) was in progress.

## Declaration

```swift
case reading
```

## See Also

### Enumeration Cases

- [Stream.Status.atEnd](foundation/stream/status/atend.md)
- [Stream.Status.closed](foundation/stream/status/closed.md)
- [Stream.Status.error](foundation/stream/status/error.md)
- [Stream.Status.notOpen](foundation/stream/status/notopen.md)
- [Stream.Status.open](foundation/stream/status/open.md)
- [Stream.Status.opening](foundation/stream/status/opening.md)
- [Stream.Status.writing](foundation/stream/status/writing.md)
