IDecompressor.cs 362 B

123456789101112
  1. using System;
  2. using Best.HTTP.Shared.Logger;
  3. using Best.HTTP.Shared.PlatformSupport.Memory;
  4. namespace Best.HTTP.Response.Decompression
  5. {
  6. public interface IDecompressor : IDisposable
  7. {
  8. (BufferSegment decompressed, bool releaseTheOld) Decompress(BufferSegment segment, bool forceDecompress, bool dataCanBeLarger, LoggingContext context);
  9. }
  10. }