Remotely initialise a worker or locator node.

init_locator(host, port)

Arguments

host

Scalar character naming the host to initialise the node on.

port

Scalar integer declaring the port to bind to. Can be 0L if unknown.

Details

Initialises a worker node, or a locator node.

Value

None

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--  or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (host, port) 
{
    chunknet::LOCATOR(host, port)
    remote_sys(host, "chunknet::locator_node", list(host, port))
  }
#> function (host, port) 
#> {
#>     chunknet::LOCATOR(host, port)
#>     remote_sys(host, "chunknet::locator_node", list(host, port))
#>   }
#> <environment: 0x55b7abd314a8>