Files
EdgeNode/internal/compressions/writer.go

19 lines
311 B
Go
Raw Permalink Normal View History

2024-05-17 18:30:33 +08:00
// Copyright 2021 GoEdge goedge.cdn@gmail.com. All rights reserved.
2021-09-29 19:37:07 +08:00
package compressions
2022-03-20 00:05:47 +08:00
import "io"
2021-09-29 19:37:07 +08:00
type Writer interface {
Write(p []byte) (int, error)
Flush() error
2022-03-20 00:05:47 +08:00
Reset(writer io.Writer)
RawClose() error
2021-09-29 19:37:07 +08:00
Close() error
Level() int
IncreaseHit() uint32
2022-03-20 00:05:47 +08:00
SetPool(pool *WriterPool)
ResetFinish()
2021-09-29 19:37:07 +08:00
}