---
title: value
framework: combine
role: symbol
role_heading: Instance Property
path: combine/future/value-9iwjz
---

# value

The published value of the future, delivered asynchronously.

## Declaration

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

## Discussion

Discussion This property subscribes to the Future and delivers the value asynchronously when the Future publishes it. Use this property when you want to use the async-await syntax with a Future.

## See Also

### Accessing the value asynchronously

- [value](combine/future/value-5iprp.md)
