Akka.Cluster.PerformanceCounterMetricsCollector.SystemMaxMemory C# (CSharp) Méthode

SystemMaxMemory() public méthode

Gets the total amount of system memory. Creates a new instance each time.
public SystemMaxMemory ( ) : Metric
Résultat Metric
        public Metric SystemMaxMemory()
        {
            return Metric.Create(StandardMetrics.SystemMemoryMax,
                IsRunningOnMono
                    ? _monoSystemMaxMemory.RawValue
                    : GetVbTotalPhysicalMemory());
        }