feat(batch25): implement gateway reply map and inbound message pipeline

This commit is contained in:
Joseph Doherty
2026-03-01 02:07:25 -05:00
parent 59fa600b3c
commit e9be0751ec
8 changed files with 483 additions and 0 deletions

View File

@@ -358,6 +358,12 @@ public sealed partial class Account : INatsAccount
/// </summary>
internal byte[]? ServiceImportReply { get; set; }
/// <summary>
/// Gateway reply mapping table used for routed reply restoration.
/// Mirrors Go <c>gwReplyMapping</c>.
/// </summary>
internal GwReplyMapping GwReplyMapping { get; } = new();
/// <summary>
/// Subscription ID counter for internal use.
/// Mirrors Go <c>isid uint64</c>.