3 implementations of OnHeartbeat
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionContext.cs (1)
234public void OnHeartbeat(Action<object> action, object state)
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelConnection.cs (1)
62public void OnHeartbeat(Action<object> action, object state)
Microsoft.AspNetCore.SignalR.Specification.Tests (1)
parent\parent\parent\common\testassets\Tests.Utils\TestClient.cs (1)
322public void OnHeartbeat(Action<object> action, object state)
4 references to OnHeartbeat
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\HttpConnection.cs (1)
111connectionHeartbeatFeature?.OnHeartbeat(state => ((HttpConnection)state).Tick(), this);
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (1)
Internal\QuicConnectionContext.cs (1)
261heartbeatFeature.OnHeartbeat(static state => ((QuicConnectionContext)state).RemoveExpiredStreams(), this);
Microsoft.AspNetCore.SignalR.Core (2)
HubConnectionContext.cs (2)
699Features.Get<IConnectionHeartbeatFeature>()?.OnHeartbeat(state => ((HubConnectionContext)state).KeepAliveTick(), this); 816Features.Get<IConnectionHeartbeatFeature>()?.OnHeartbeat(state => ((HubConnectionContext)state).CheckClientTimeout(), this);