This commit is contained in:
Chris Lu
2021-05-09 15:33:01 -07:00
parent 55e060cf61
commit 50be19d23e
3 changed files with 11 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
package filesys
type DirtyPages interface {
AddPage(offset int64, data []byte)
FlushData() error
ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64)
GetStorageOptions() (collection, replication string)
}