// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information. using System; namespace Microsoft.AspNet.SignalR.Infrastructure { /// /// Implemented on anything that has the ability to write raw binary data /// public interface IBinaryWriter { void Write(ArraySegment data); } }