NodeServer.nodes

Gets a list with the nodes connected to the hub, this excluded.

class NodeServer
shared pure nothrow @property @trusted
const(Node)[]
nodes
()

Examples

foreach(node ; server.nodes) {
   assert(node.name != server.nodeName);
}

Meta