feat(batch19): implement service import maps and response subscription methods

This commit is contained in:
Joseph Doherty
2026-02-28 20:10:06 -05:00
parent 50f6b69fda
commit f4dfbf49bd
3 changed files with 549 additions and 0 deletions

View File

@@ -1682,6 +1682,18 @@ public sealed partial class ClientConnection
}
}
internal void ProcessUnsub(byte[] sid)
{
lock (_mu)
{
if (Subs == null)
return;
var sidText = Encoding.ASCII.GetString(sid);
Subs.Remove(sidText);
}
}
// features 440-441: processInfo, processErr
internal void ProcessInfo(string info)
{