fix(historian-gateway): seam maxEvents XML doc + driver Platforms + ValueTask in fake

Addresses Task 1 code-review: document that ReadEventsAsync.maxEvents is enforced
client-side (no server cap in the wire contract); add Platforms=AnyCPU;x64 to match
sibling drivers; use ValueTask.CompletedTask in FakeHistorianGatewayClient.

Claude-Session: https://claude.ai/code/session_012SDSQ3AcaXqPcBtDESBRii
This commit is contained in:
Joseph Doherty
2026-06-26 16:35:08 -04:00
parent a96e85f0e4
commit c51ca2276b
3 changed files with 12 additions and 1 deletions
@@ -209,6 +209,6 @@ public sealed class FakeHistorianGatewayClient : IHistorianGatewayClient
yield return item;
}
await Task.CompletedTask.ConfigureAwait(false);
await ValueTask.CompletedTask.ConfigureAwait(false);
}
}