IOffsetAdapter.cs 410 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace SuperSocket.SocketBase.Protocol
  6. {
  7. /// <summary>
  8. /// The interface for a Receive filter to adapt receiving buffer offset
  9. /// </summary>
  10. public interface IOffsetAdapter
  11. {
  12. /// <summary>
  13. /// Gets the offset delta.
  14. /// </summary>
  15. int OffsetDelta { get; }
  16. }
  17. }