> For the complete documentation index, see [llms.txt](https://runninghorse.gitbook.io/gdnet/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://runninghorse.gitbook.io/gdnet/net.scene/sendrt-player-client-rpcmodel-model.md).

# SendRT(Player client, RPCModel model)

```
    public void SendRT(Player client, RPCModel model)
    {
        if (client.CloseSend)
            return;
        if (client.tcpRPCModels.Count >= ushort.MaxValue)
        {
            Debug.LogError($"[{client.UserID}]数据缓存列表超出限制!");
            return;
        }
        client.tcpRPCModels.Enqueue(model);
    }
```
