---
title: value
framework: combine
role: symbol
role_heading: Instance Property
path: combine/future/value-5iprp
---

# value

The published value of the future or an error, delivered asynchronously.

## Declaration

```swift
final var value: Output { get async throws }
```

## Discussion

Discussion This property subscribes to the Future and delivers the value asynchronously when the Future publishes it. If the Future terminates with an error, the awaiting caller receives the error instead. Use this property when you want to the async-await syntax with a Future whose Failure type is not Never.

## See Also

### Accessing the value asynchronously

- [value](combine/future/value-9iwjz.md)
