Files
ichni_Official/Packages/com.tivadar.best.http/Runtime/HTTP/Response/Decompression/IDecompressor.cs
2026-06-15 18:18:16 +08:00

13 lines
362 B
C#

using System;
using Best.HTTP.Shared.Logger;
using Best.HTTP.Shared.PlatformSupport.Memory;
namespace Best.HTTP.Response.Decompression
{
public interface IDecompressor : IDisposable
{
(BufferSegment decompressed, bool releaseTheOld) Decompress(BufferSegment segment, bool forceDecompress, bool dataCanBeLarger, LoggingContext context);
}
}