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