Files
EdgeNode/internal/caches/writer.go

32 lines
456 B
Go
Raw Normal View History

2020-10-04 14:30:42 +08:00
package caches
2020-10-05 16:55:14 +08:00
// 缓存内容写入接口
type Writer interface {
2021-01-13 12:02:50 +08:00
// 写入Header数据
WriteHeader(data []byte) (n int, err error)
// 写入Body数据
2020-10-05 16:55:14 +08:00
Write(data []byte) (n int, err error)
2020-10-04 14:30:42 +08:00
2021-01-13 12:02:50 +08:00
// 写入的Header数据大小
HeaderSize() int64
// 写入的Body数据大小
BodySize() int64
2020-10-05 19:15:35 +08:00
2020-10-05 16:55:14 +08:00
// 关闭
Close() error
2020-10-04 14:30:42 +08:00
2020-10-05 16:55:14 +08:00
// 丢弃
Discard() error
2020-10-04 14:30:42 +08:00
2020-10-05 16:55:14 +08:00
// Key
Key() string
2020-10-04 14:30:42 +08:00
2020-10-05 16:55:14 +08:00
// 过期时间
ExpiredAt() int64
// 内容类型
ItemType() ItemType
2020-10-04 14:30:42 +08:00
}