1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-19 18:01:03 +02:00
seaweedfs/weed/sequence/sequence.go
Lei Liu f2f90436ef fix leader master /dir/lookup api
Signed-off-by: Lei Liu <lei01.liu@horizon.ai>
2019-10-30 16:38:40 +08:00

8 lines
111 B
Go

package sequence
type Sequencer interface {
NextFileId(count uint64) uint64
SetMax(uint64)
Peek() uint64
}