Files
SVSimServer/SVSim.BattleNode/Sessions/Dispatch/Handlers/EchoHandler.cs
2026-06-03 18:03:19 -04:00

9 lines
404 B
C#

namespace SVSim.BattleNode.Sessions.Dispatch.Handlers;
/// <summary>Echo is the receiver's per-frame ack; the client has no inbound Echo handler, so the
/// node consumes it (bullet-2 audit). Relaying would risk an echo->echo storm.</summary>
internal sealed class EchoHandler : IFrameHandler
{
public IReadOnlyList<DispatchRoute> Handle(FrameDispatchContext ctx) => Array.Empty<DispatchRoute>();
}