aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/page_writer/dirty_pages.go
blob: c18f847b7a670401261f242c7d291e3136c14c4c (plain)
1
2
3
4
5
6
7
8
package page_writer

type DirtyPages interface {
	AddPage(offset int64, data []byte)
	FlushData() error
	ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64)
	GetStorageOptions() (collection, replication string)
}