Get the task result. This might be an error if the task has failed.
Examples
cleanup <- hipercow_example_helper()
#> ℹ This example uses a special helper
# Typical usage
id <- task_create_expr(runif(1))
#> ✔ Submitted task '3e74790dd3f79ab315461a0b77974816' using 'example'
task_wait(id)
#> [1] TRUE
task_result(id)
#> [1] 0.6346675
# Tasks that error return error values as results
id <- task_create_expr(readRDS("nosuchfile.rds"))
#> ✔ Submitted task 'baf0c5cb78c0f1be092169f89393d93f' using 'example'
task_wait(id)
#> [1] FALSE
task_result(id)
#> <simpleError in gzfile(file, "rb"): cannot open the connection>
cleanup()
#> ℹ Cleaning up example