| netWorkSpace {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 variable with specific mode in the shared netWorkSpace.signature(.Object = "netWorkSpace"): delete a variable from the shared netWorkSpace.signature(.Object = "netWorkSpace"): fetch value associates with a variable from the shared netWorkSpace.signature(.Object = "netWorkSpace"):
attempt to fetch value associate with a variable from the shared netWorkSpace; a non-blocking version of fetch.signature(.Object = "netWorkSpace"): find value associates with a variable from the shared netWorkSpace.signature(.Object = "netWorkSpace"):
attempt to find value associates with a variable from the shared netWorkSpace; a non-blocking version of find.signature(.Object = "netWorkSpace"): list variables in a netWorkSpace.signature(.Object = "netWorkSpace"): store value associate with a variable to the shared netWorkSpace.signature(.Object = "netWorkSpace"): return the name of a netWorkSpace.signature(.Object = "netWorkSpace"): alias to nwsClose.
## Not run:
# To create a new workspace with the name "my space" use:
ws = netWorkSpace('my space')
# Or,
ws = new('netWorkSpace', 'my space')
# To create a new workspace called "my space2" on nws server
# running on port 8245 on machine zeus:
ws2 = netWorkSpace(wsName='my space2', serverHost='zeus', port=8245)
## End(Not run)