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
:server host name. Default value is "localhost"
.
port
:server port number. Default value is 8765
.
cookieProtocol
:Currently not used.
nwsSocket
:Object of class "ANY"
representation of the socket connection to the server.
port
:Object of class "numeric"
representation of the server port number.
serverHost
:Object of class "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)