Skip to contents

Get the task result. This might be an error if the task has failed.

Usage

task_result(id, follow = TRUE, root = NULL)

Arguments

id

The task identifier

follow

Logical, indicating if we should follow any retried tasks.

root

A hipercow root, or path to it. If NULL we search up your directory tree.

Value

The value of the queued expression

Examples

cleanup <- hipercow_example_helper()
#>  This example uses a special helper

# Typical usage
id <- task_create_expr(runif(1))
#>  Submitted task '2637fcdc2c6206ac044ff9ae13ab804d' using 'example'
task_wait(id)
#> [1] TRUE
task_result(id)
#> [1] 0.4896825

# Tasks that error return error values as results
id <- task_create_expr(readRDS("nosuchfile.rds"))
#>  Submitted task '974c4890330b454cf026af34cd2b6695' using 'example'
task_wait(id)
#> [1] FALSE
task_result(id)
#> <simpleError in gzfile(file, "rb"): cannot open the connection>

cleanup()
#>  Cleaning up example