mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-03 09:29:02 +08:00
9 lines
221 B
Go
9 lines
221 B
Go
|
package filesys
|
||
|
|
||
|
type DirtyPages interface {
|
||
|
AddPage(offset int64, data []byte)
|
||
|
FlushData() error
|
||
|
ReadDirtyDataAt(data []byte, startOffset int64) (maxStop int64)
|
||
|
GetStorageOptions() (collection, replication string)
|
||
|
}
|