rabbitmq_create_queue.Rd
This will first check to see if the queue already exists in RabbitMQ, if not it will create the queue. If the queue exists, or is created it will return TRUE, it will return FALSE otherwise.
rabbitmq_create_queue(
url,
auth,
vhost,
queue,
auto_delete = FALSE,
durable = TRUE
)
parsed RabbitMQ URL.
the httr authentication object to use.
the vhost where to create the queue.
the queue that should be checked/created.
should the queue be deleted afterwards (FALSE is default)
should the messages exists after a server restart (TRUE is default)
TRUE if the queue now exists, FALSE otherwise.