其他分享
首页 > 其他分享> > SuperSocket获取所有连接上的 Session

SuperSocket获取所有连接上的 Session

作者:互联网

你也可以从 AppServer 实例获取所有连接上的 session 然后推送数据到所有客户端:

foreach(var session in appServer.GetAllSessions())

{

    session.Send(data, 0, data.Length);

}   

如果你启用了 Session 快照, 这些从 AppServer.GetAllSessions() 获取的 sessions 将不是实时更新的。 他们是在上次获取快照时所有连接到服务器的 Session。 快照相关配置,请参考配置文档。

标签:快照,SuperSocket,Session,GetAllSessions,获取,session,AppServer,连接
来源: https://www.cnblogs.com/fanweisheng/p/11126856.html