setServer {nws} | R Documentation |
This function registers the specified server object.
It can be accessed later using the getServer
function.
setServer(serverInfo, ...)
serverInfo |
serverInfo object to register. |
... |
currently ignored. |
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
getServer
function.
## Not run: sI <- managedServerInfo() setServer(sI) #create a sleigh on sI s <- sleigh() ## End(Not run)