aboutsummaryrefslogtreecommitdiff
path: root/weed/sequence/sequence.go
blob: 49de63b730ffbfb3e6877b901d94a28faf589ac6 (plain)
1
2
3
4
5
6
package sequence

type Sequencer interface {
	NextFileId(count uint64) uint64
	SetMax(uint64)
}