FutureResult {future} | R Documentation |
Results from resolving a future
FutureResult(value = NULL, condition = NULL, calls = NULL, ..., version = "1.7") ## S3 method for class 'FutureResult' as.character(x, ...)
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. |
This function is only part of the _backend_ Future API. This function is _not_ part of the frontend Future API.
An object of class FutureResult.