1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/server.R
\name{stopServer}
\alias{stopServer}
\title{Stop a server}
\usage{
stopServer(server)
}
\arguments{
\item{server}{A server object that was previously returned from
\code{\link{startServer}} or \code{\link{startPipeServer}}.}
}
\description{
Given a server object that was returned from a previous invocation of
\code{\link{startServer}} or \code{\link{startPipeServer}}, this closes all
open connections for that server and unbinds the port.
}
\seealso{
\code{\link{stopAllServers}} to stop all servers.
}
|