stopServer {beakr} | R Documentation |
Stops the server associated with a Beakr
instance,
closing all open connections and unbinding the port.
stopServer(beakr = NULL, verbose = FALSE)
beakr |
|
verbose |
Logical specifying whether to print out details of the
|
None
library(beakr)
beakr <- newBeakr()
# beakr pipeline
beakr %>%
handleErrors() %>%
listen(daemon = TRUE, verbose = TRUE)
stopServer(beakr, verbose = TRUE)