// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information.
using Microsoft.AspNet.SignalR.Hubs;
namespace Microsoft.AspNet.SignalR
{
///
/// Provides access to information about a .
///
public interface IHubContext
{
///
/// Encapsulates all information about a SignalR connection for an .
///
IHubConnectionContext Clients { get; }
///
/// Gets the the hub.
///
IGroupManager Groups { get; }
}
}