2 writes to _lastValue
System.Diagnostics.DiagnosticSource (2)
System\Diagnostics\Metrics\LastValueAggregator.cs (2)
48
public override void Update(double value) => Volatile.Write(ref
_lastValue
, value);
50
public override IAggregationStatistics Collect() => new SynchronousLastValueStatistics(Volatile.Read(ref
_lastValue
));