public void SendPacket(IBuilderLite retpb, uint flowId) { if (currentCon == null || currentCon.isClose) { return; } var bytes = ServerBundle.MakePacket(retpb, flowId); Debug.Log("DemoServer: Send Packet " + flowId); lock (currentCon.msgBuffer) { currentCon.msgBuffer.Add(bytes); } }