feat: add jetstream mirror and source orchestration

This commit is contained in:
Joseph Doherty
2026-02-23 06:10:41 -05:00
parent d3aad48096
commit f1d3c19594
6 changed files with 128 additions and 0 deletions

View File

@@ -6,4 +6,6 @@ public sealed class StreamConfig
public List<string> Subjects { get; set; } = [];
public int MaxMsgs { get; set; }
public int Replicas { get; set; } = 1;
public string? Mirror { get; set; }
public string? Source { get; set; }
}