| managedServerInfo {nws} | R Documentation |
Class representing managedServerInfo.
Objects can be created by calls of the form
managedServerInfo(...)
or
new("managedServerInfo", ...)
where '...' can be one or more of the following named arguements:
host:port:webPort:quiet:FALSE.pluginPath:NULL,
will point to plugins in the nwsserver package.logFile:signature(.Object = "managedServerInfo"):
managedServerInfo class constructor.signature(.Object = "managedServerInfo"):
return hostname associated with server. If bound to any interface,
will return '0.0.0.0'.signature(.Object = "managedServerInfo"):
return port associated with server.signature(.Object = "managedServerInfo"):
returns TRUE if the server is running, else FALSE.signature(.Object = "managedServerInfo"):
return the web port for the server.signature(.Object = "managedServerInfo"):
shut down the server.
## Not run:
# example 1
sI = managedServerInfo()
# Or,
sI = new("managedServerInfo")
# example 2
sI = managedServerInfo(host="node1", port=5555, webPort=5556,
quiet=TRUE')
## End(Not run)