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")
: fetch a value of a workspace variable.signature(.Object = "netWorkSpace")
: try to fetch a value of a workspace variable.signature(.Object = "netWorkSpace")
: find a value of a workspace variable.signature(.Object = "netWorkSpace")
: try to find a value of a workspace variable.signature(.Object = "netWorkSpace")
: store a value into a workspace variable.signature(.Object = "netWorkSpace")
: fetch a value of a workspace variable and write it to a file.signature(.Object = "netWorkSpace")
: try to fetch a value of a workspace variable and write it to a file.signature(.Object = "netWorkSpace")
: find a value of a workspace variable and write it to a file.signature(.Object = "netWorkSpace")
: try to find a value of a workspace variable and write it to a file.signature(.Object = "netWorkSpace")
: store data from a file into a workspace variable.signature(.Object = "netWorkSpace")
:
create a function that acts as a destructive iterator over the values of the specified variable.signature(.Object = "netWorkSpace")
:
create a function that acts as a destructive iterator over the values of the specified variable.signature(.Object = "netWorkSpace")
:
create a function that acts as a non-destructive iterator over the values of the specified variable.signature(.Object = "netWorkSpace")
:
create a function that acts as a non-destructive iterator over the values of the specified variable.signature(.Object = "netWorkSpace")
: close the connection to the NWS server.signature(.Object = "netWorkSpace")
: declare the mode of a workspace variable.signature(.Object = "netWorkSpace")
: delete a variable from a workspace.signature(.Object = "netWorkSpace")
: list all variables in a workspace.signature(.Object = "netWorkSpace")
: return the associated NwsServer object.signature(.Object = "netWorkSpace")
: create an Active Binding for a NetWorkSpace Variablesignature(.Object = "netWorkSpace")
: return the name of the workspace.## Not run: # To create a new workspace with the name "my space" use: ws = 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)