#include "tensorstore/util/future.h"
const absl::Statustensorstore::Future<T>::status() const;

Returns a reference to the contained absl::Status.

Equivalent to result().status(). Calls Force(), waits for the result to be ready, and returns a reference to the contained absl::Status. If the Future<T> contains a value, then this function returns absl::OkStatus().

Dchecks:

!null()