diff --git a/docs/network/index.html b/docs/network/index.html index 7a438717..01af8ad0 100644 --- a/docs/network/index.html +++ b/docs/network/index.html @@ -1193,9 +1193,11 @@ function releaseFunction (clusterPosition, containedNodesPositions) { Type Description - joinCondition(
  nodeOptions: Object
) + joinCondition(
  nodeOptions: Object
)
or
joinCondition(
  parentNodeOptions: Object,
  childNodeOptions: Object
) Function - Optional for all but the cluster method. The cluster module loops over all nodes that are + Optional for all but the cluster method.
+ clusterByConnection is the only function that will pass 2 nodeOptions objects as arguments to the joinCondition callback.
+ The cluster module loops over all nodes that are selected to be in the cluster and calls this function with their data as argument. If this function returns true, this node will be added to the cluster. You have access to all options @@ -1219,6 +1221,7 @@ var options = { network.clustering.cluster(options); + clusterByConnection will pass 2 nodeOptions objects as arguments to the joinCondition callback. processProperties(
  clusterOptions: Object,