// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using System.Collections.Generic; namespace Microsoft.AspNetCore.SignalR { public interface IHubClients { T All { get; } T AllExcept(IReadOnlyList excludedConnectionIds); T Client(string connectionId); T Clients(IReadOnlyList connectionIds); T Group(string groupName); T Groups(IReadOnlyList groupNames); T GroupExcept(string groupName, IReadOnlyList excludedConnectionIds); T User(string userId); T Users(IReadOnlyList userIds); } }