Send data to the message queue to be sent to the remote TCP client later Send Message data directly to the remote TCP client (without buffering) 直接将Message数据发送数据给远程的TCP客户端(无缓冲)
(msgID uint32, data []byte)
| 43 | // Send Message data directly to the remote TCP client (without buffering) |
| 44 | // 直接将Message数据发送数据给远程的TCP客户端(无缓冲) |
| 45 | SendMsg(msgID uint32, data []byte) error |
| 46 | |
| 47 | // Send Message data to the message queue to be sent to the remote TCP client later (with buffering) |
| 48 | // 直接将Message数据发送给远程的TCP客户端(有缓冲) |
no outgoing calls