Files
EdgeNode/internal/compressions/writer.go

18 lines
294 B
Go
Raw Normal View History

2021-09-29 19:37:07 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
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
2022-03-20 00:05:47 +08:00
SetPool(pool *WriterPool)
ResetFinish()
2021-09-29 19:37:07 +08:00
}