9 lines
404 B
C#
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>();
|
|
}
|