Akka.Cluster.MetricsGossip.Filter C# (CSharp) Method

Filter() public method

Only the nodes that are in the includeNodes set.
public Filter ( ImmutableHashSet
includeNodes ) : MetricsGossip
includeNodes ImmutableHashSet
return MetricsGossip
        public MetricsGossip Filter(ImmutableHashSet<Address> includeNodes)
        {
            return Copy(Nodes.Where(x => includeNodes.Contains(x.Address)).ToImmutableHashSet());
        }