4 writes to _timeoutTimestamp
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Infrastructure\TimeoutControl.cs (4)
64if (timestamp > Interlocked.Read(ref _timeoutTimestamp)) 80if (Interlocked.Read(ref _timeoutTimestamp) != long.MaxValue) 181Interlocked.Exchange(ref _timeoutTimestamp, long.MaxValue); 192Interlocked.Exchange(ref _timeoutTimestamp, Interlocked.Read(ref _lastTimestamp) + timeoutTicks + _heartbeatIntervalTicks);
2 references to _timeoutTimestamp
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Infrastructure\TimeoutControl.cs (2)
169Debug.Assert(_timeoutTimestamp == long.MaxValue, "Concurrent timeouts are not supported."); 318if (_timeoutTimestamp != long.MaxValue)