dirty_pages.go 284 B

12345678910
  1. package filesys
  2. type DirtyPages interface {
  3. AddPage(offset int64, data []byte)
  4. FlushData() error
  5. ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64)
  6. GetStorageOptions() (collection, replication string)
  7. SetWriteOnly(writeOnly bool)
  8. GetWriteOnly() (writeOnly bool)
  9. }