future (version 1.10.0)

FutureResult: Results from resolving a future

Description

Results from resolving a future

Usage

FutureResult(value = NULL, condition = NULL, calls = NULL, ...,
  version = "1.7")

# S3 method for FutureResult as.character(x, ...)

Arguments

value

The value of the future expression. If the expression was not fully resolved (e.g. an error) occurred, the the value is `NULL`.

condition

A [[base::condition]] captured while resolving the future, if any. This is typically an error.

calls

A list of calls that led up to the captured condition, if any.

version

The version format of the results.

(optional) Additional named results to be returned.

Value

An object of class FutureResult.

Details

This function is only part of the _backend_ Future API. This function is _not_ part of the frontend Future API.