nwsServer {nws} | R Documentation |
Class representing nwsServer.
Objects can be created by calls of the form
nwsServer(...)
or
new("nwsServer", ...)
where '...' can be one or more of the following named arguments:
serverInfo
:serverInfo
or managedServerInfo
. If not
specified, will get the return value of getServer
.
nwsSocket
:"ANY"
representation of the socket connection to the server.serverInfo
:"ANY"
representation of the server.
signature(.Object = "nwsServer")
: nwsServer class constructor.signature(.Object = "nwsServer")
: delete a netWorkSpace from the server.signature(.Object = "nwsServer")
: list all netWorkSpaces in the server.signature(.Object = "nwsServer")
: create a unique temporary workspace using the default or specified template.signature(.Object = "nwsServer")
: create and owned a netWorkSpace.signature(.Object = "nwsServer")
: connect to a netWorkSpace but does not claim ownership.
The constructor still supports the serverHost
and port
arguements, but as of release 2.0, they are deprecated and will be
removed in 4.0.
The legacy descriptions are:
serverHost
: server host name. Default value is "localhost"
.
port
: server port number. Default value is 8765
.
If the user specifies both one or more deprecated options and a serverInfo object, the deprecated option(s) will be ignored.
## Not run: # example 1 nwss = nwsServer() # Or, nwss = new("nwsServer") # example 2 nwss = nwsServer(serverInfo=managedServerInfo()) ## End(Not run)