| netWorkSpace-class {nws} | R Documentation |
Class representing netWorkSpace
Objects can be created by calls of the form new("netWorkSpace", wsName, serverHost, port, useUse, serverWrap, ...).
server:"nwsServer" representation of the server that this netWorkSpace connects to.wsName:"character" representation of this netWorkSpace's name.signature(.Object = "netWorkSpace"): netWorkSpace class constructor.signature(.Object = "netWorkSpace"): close connection to the shared netWorkSpace server.signature(.Object = "netWorkSpace"): declare a mode for a variable in the shared netWorkSpace.signature(.Object = "netWorkSpace"): delete a variable from the shared netWorkSpace.signature(.Object = "netWorkSpace"): fetch something from the shared netWorkSpace.signature(.Object = "netWorkSpace"): attempt to fetch something from the shared netWorkSpace; a non-blocking version of fetch.signature(.Object = "netWorkSpace"): find something from the shared netWorkSpace.signature(.Object = "netWorkSpace"): attempt to find something from the shared netWorkSpace.signature(.Object = "netWorkSpace"): list variables in a netWorkSpace.signature(.Object = "netWorkSpace"): store something to the shared netWorkSpace.signature(.Object = "netWorkSpace"): return the name of a netWorkSpace.
## Not run:
# To create a new workspace with the name "my space" use:
ws = new('netWorkSpace', 'my space')
# To create a new workspace called "my space2" on nws server
# running on port 8245 on machine zeus:
ws2 = new('netWorkSpace', wsName='my space2', serverHost='zeus', port=8245)
## End(Not run)