Files
seaweedfs/weed/filesys/dirty_pages.go

11 lines
284 B
Go
Raw Normal View History

2021-05-09 15:33:01 -07:00
package filesys
type DirtyPages interface {
AddPage(offset int64, data []byte)
FlushData() error
ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64)
GetStorageOptions() (collection, replication string)
2021-05-09 17:22:30 -07:00
SetWriteOnly(writeOnly bool)
GetWriteOnly() (writeOnly bool)
2021-05-09 15:33:01 -07:00
}