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

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