mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-02 22:10:25 +08:00
19 lines
311 B
Go
19 lines
311 B
Go
// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package compressions
|
|
|
|
import "io"
|
|
|
|
type Writer interface {
|
|
Write(p []byte) (int, error)
|
|
Flush() error
|
|
Reset(writer io.Writer)
|
|
RawClose() error
|
|
Close() error
|
|
Level() int
|
|
IncreaseHit() uint32
|
|
|
|
SetPool(pool *WriterPool)
|
|
ResetFinish()
|
|
}
|