项目地址是:https://github.com/statianzo/Fleck
我现在是在接受消息
socket.OnMessage 里面需要循环推送消息给客户端 我现在采用的方式是开一个线程 然后使用whie(true)来循环给客户端发消息,
var thread = new Thread(() => { //循环发消息 }); thread.Start();
多开线程有没有必要呢?
这个推送是持续 长时间运行的