using System.Collections.Generic; using System.Threading.Tasks; namespace Kean.Domain.Message.Sockets { /// /// 在线管理通道 /// public interface IOnlineSocket { /// /// 消息通知 /// /// 连接 ID Task Notify(IEnumerable connectionIds); } }