// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information. using System; using System.Collections.Generic; using System.IO; namespace Microsoft.AspNet.SignalR.Messaging { public interface ISubscriber { IList EventKeys { get; } Action WriteCursor { get; set; } string Identity { get; } event Action EventKeyAdded; event Action EventKeyRemoved; Subscription Subscription { get; set; } } }