feat(batch3): implement send queue feature group
This commit is contained in:
@@ -953,6 +953,17 @@ public sealed partial class ClientConnection
|
||||
FlushClients(0);
|
||||
}
|
||||
|
||||
internal void ProcessInboundClientMsg(byte[] msg)
|
||||
{
|
||||
if (msg is null || msg.Length == 0)
|
||||
return;
|
||||
|
||||
LastIn = DateTime.UtcNow;
|
||||
|
||||
if (Trace)
|
||||
TraceMsg(msg);
|
||||
}
|
||||
|
||||
internal void EnqueueProtoAndFlush(ReadOnlySpan<byte> proto)
|
||||
{
|
||||
EnqueueProto(proto);
|
||||
|
||||
Reference in New Issue
Block a user