Skip to contents

Create an rrq controller for your queue, and set it as the default controller. Use this to interact with workers created with hipercow_rrq_workers_submit(). Proper docs forthcoming, all interfaces are subject to some change.

Usage

hipercow_rrq_controller(..., set_as_default = TRUE, driver = NULL, root = NULL)

Arguments

...

Additional arguments passed through to rrq::rrq_controller(); currently this is follow and timeout_task_wait.

set_as_default

Set the rrq controller to be the default; this is usually what you want.

driver

Name of the driver to use. The default (NULL) depends on your configured drivers; if you have no drivers configured we will error as we lack information required to proceed. If you have exactly one driver configured we'll submit your task with it. If you have more than one driver configured, then we will error, though in future versions we may fall back on a default driver if you have one configured.

root

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

Value

An rrq::rrq_controller object.