Get the results of a group of tasks, returning them as a list. See rrq_task_result for getting the result of a single task.
Source:R/rrq_task.R
rrq_task_results.Rd
Get the results of a group of tasks, returning them as a list. See rrq_task_result for getting the result of a single task.
Arguments
- task_ids
A vector of task ids for which the task result is wanted.
- error
Logical, indicating if we should throw an error if the task was not successful. See
rrq_task_result()
for details.- named
Logical, indicating if the return value should be named with the task ids; as these are quite long this can make the value a little awkward to work with.
- follow
Optional logical, indicating if we should follow any redirects set up by doing rrq_task_retry. If not given, falls back on the value passed into the controller, the global option
rrq.follow
, and finallyTRUE
. Set toFALSE
if you want to return information about the original task, even if it has been subsequently retried.- controller
The controller to use. If not given (or
NULL
) we'll use the controller registered withrrq_default_controller_set()
.
Value
A list, one entry per result. This function errors if
any task is not available. If named = TRUE
, then this list is
named with the task_ids
.
Examples
obj <- rrq_controller("rrq:example")
ts <- rrq_task_create_bulk_call(sqrt, 1:10, controller = obj)
rrq_task_wait(ts, controller = obj)
#> [1] TRUE
rrq_task_results(ts, controller = obj)
#> [[1]]
#> [1] 1
#>
#> [[2]]
#> [1] 1.414214
#>
#> [[3]]
#> [1] 1.732051
#>
#> [[4]]
#> [1] 2
#>
#> [[5]]
#> [1] 2.236068
#>
#> [[6]]
#> [1] 2.44949
#>
#> [[7]]
#> [1] 2.645751
#>
#> [[8]]
#> [1] 2.828427
#>
#> [[9]]
#> [1] 3
#>
#> [[10]]
#> [1] 3.162278
#>
# For a single task, rrq_task_result and rrq_task_results differ
# in the return type; rrq_task_results always returns a list:
t <- ts[[1]]
rrq_task_result(t, controller = obj)
#> [1] 1
rrq_task_results(t, controller = obj)
#> [[1]]
#> [1] 1
#>