Akka.Cluster.NodeMetrics.Copy C# (CSharp) 메소드

Copy() 공개 메소드

public Copy ( Akka.Actor.Address address = null, long timestamp = null, ImmutableHashSet metrics = null ) : NodeMetrics
address Akka.Actor.Address
timestamp long
metrics ImmutableHashSet
리턴 NodeMetrics
        public NodeMetrics Copy(Address address = null, long? timestamp = null, ImmutableHashSet<Metric> metrics = null)
        {
            return new NodeMetrics(address ?? Address, timestamp.HasValue ? timestamp.Value : Timestamp, metrics ?? Metrics);
        }
    }