future (version 1.11.1.1)

FutureResult: Results from resolving a future

Description

Results from resolving a future

Usage

FutureResult(value = NULL, stdout = NULL, conditions = 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.

conditions

A list of zero or more list elements each containing a captured [[base::condition]] and possibly more meta data such as the call stack and a timestamp.

version

The version format of the results.

(optional) Additional named results to be returned.

Value

An object of class FutureResult.

Note to developers

The FutureResult structure is _under development_ and may change at anytime, e.g. elements may be renamed or removed. Because of this, please avoid accessing the elements directly in code. Feel free to reach out if you need to do so in your code.

Deprecated elements

* future (>= 1.11.0): elements condition and calls are deprecated in favor of conditions

Details

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