using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SuperSocket.SocketBase.Protocol
{
///
/// The interface for a Receive filter to adapt receiving buffer offset
///
public interface IOffsetAdapter
{
///
/// Gets the offset delta.
///
int OffsetDelta { get; }
}
}