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

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