// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
using System.Threading.Tasks;
namespace Microsoft.AspNet.SignalR
{
///
/// Manages groups for a connection and allows sending messages to the group.
///
public interface IConnectionGroupManager : IGroupManager
{
///
/// Sends a value to the specified group.
///
/// The name of the group.
/// The value to send.
/// The list of connection ids to exclude
/// A task that represents when send is complete.
Task Send(string groupName, object value, params string[] excludeConnectionIds);
}
}