Return names of worker configurations saved by
rrq_worker_config_save()
Arguments
- controller
The controller to use. If not given (or
NULL
) we'll use the controller registered withrrq_default_controller_set()
.
Value
A character vector of names; these can be passed as the
name
argument to rrq_worker_config_read()
.
Examples
obj <- rrq_controller("rrq:example")
cfg <- rrq_worker_config("fast")
rrq_worker_config_save("use-fast", cfg, controller = obj)
rrq_worker_config_list(controller = obj)
#> [1] "localhost" "use-fast"