Class NodeIdentifier

java.lang.Object
org.ros.internal.node.server.NodeIdentifier

public class NodeIdentifier extends Object
A node slave identifier which combines the node name of a node with the URI for contacting the node's XMLRPC server.
Author:
damonkohler@google.com (Damon Kohler)
  • Constructor Details

    • NodeIdentifier

      public NodeIdentifier(GraphName name, URI uri)
      Constructs a new NodeIdentifier. Note that either nodeName or uri may be null but not both. This is necessary because either is enough to uniquely identify a SlaveServer and because, depending on context, one or the other may not be available. Although either value may be null, we do not treat null as a wildcard with respect to equality. Even though it should be safe to do so, wildcards are unnecessary in this case and would likely lead to buggy code.
      Parameters:
      name - the GraphName that the Node is known as
      uri - the URI of the Node's SlaveServer XML-RPC server
  • Method Details