feat(batch23): implement route subscription propagation and creation helpers

This commit is contained in:
Joseph Doherty
2026-02-28 21:16:01 -05:00
parent e51cdd64f4
commit acf51bf480
6 changed files with 369 additions and 1 deletions

View File

@@ -27,6 +27,8 @@ public sealed partial class ClientConnection
return;
var staleAfter = TimeSpan.FromTicks(pingInterval.Ticks * (pingMax + 1L));
if (pingMax == 0 && staleAfter > TimeSpan.Zero)
staleAfter = TimeSpan.FromTicks(Math.Max(1, pingInterval.Ticks / 2));
if (staleAfter <= TimeSpan.Zero)
return;