rename file

This commit is contained in:
chrislu
2022-01-22 03:50:18 -08:00
parent 3b4a9addaf
commit 482014f9da

View File

@@ -0,0 +1,12 @@
package page_writer
import (
"io"
)
type SaveToStorageFunc func(reader io.Reader, offset int64, size int64, cleanupFn func())
type MemChunk struct {
buf []byte
usage *ChunkWrittenIntervalList
}