value.Future {future}R Documentation

The value of a future

Description

Gets the value of a future. If the future is unresolved, then the evaluation blocks until the future is resolved.

Usage

## S3 method for class 'Future'
value(future, stdout = TRUE, signal = TRUE, ...)

Arguments

future

A Future.

stdout

If TRUE, any captured standard output is outputted, otherwise not.

signal

A logical specifying whether (conditions) should signaled or be returned as values.

...

Not used.

Details

This method needs to be implemented by the class that implement the Future API.

Value

An R object of any data type.


[Package future version 1.9.0 Index]