File: setServer.Rd

package info (click to toggle)
r-cran-nws 2.0.0.3-5
  • links: PTS
  • area: main
  • in suites: buster
  • size: 1,056 kB
  • sloc: python: 1,464; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 670 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
\name{setServer}
\alias{setServer}
\title{Set Server object}
\description{
  This function registers the specified server object.
  It can be accessed later using the \code{getServer} function.
}

\usage{
setServer(serverInfo, \dots)
}

\arguments{
\item{serverInfo}{serverInfo object to register.}
\item{\dots}{currently ignored.}
}

\note{
  This function can be used to specify a server the user wishes to be
  used by the nws package itself, or by any package which uses the
  \code{getServer} function.
}

\seealso{\code{\link{getServer}}}

\examples{
\dontrun{
sI <- managedServerInfo()
setServer(sI)
#create a sleigh on sI 
s <- sleigh()
}
}

\keyword{utilities}