interface DataflowGraphCluster {
    hasUnknownSideEffects: boolean;
    members: readonly NodeId[];
    startNode: NodeId;
}

Properties

hasUnknownSideEffects: boolean

If the cluster contains unknown side effects

members: readonly NodeId[]

All nodes that are part of this cluster

startNode: NodeId

The node which started the cluster, as this is theoretically picked random, there are just two guarantees you can rely on:

  1. The node is part of the members as well
  2. At one point during the clustering, the node wsa considered as a starting point

In general, this is more of a debugging aid/representative of the cluster.