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