nwsServer {nws} | R Documentation |
Class representing nwsServer.
Objects can be created by calls of the form
nwsServer(serverHost, port)
or
new("nwsServer", serverHost, port)
.
serverHost
:"localhost"
.port
:8765
.nwsSocket
:"ANY"
representation of the socket connection to the server.port
:"numeric"
representation of the server port number.serverHost
:"character"
representation of the server host name.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.## Not run: # example 1 nwss = nwsServer() # Or, nwss = new("nwsServer") # example 2 nwss = nwsServer(serverHost="node1", port=5555) ## End(Not run)