aboutsummaryrefslogtreecommitdiff
path: root/go/sequence/sequence.go
blob: 5a1bceaaf601b95904662ba8ea8d4379ba368397 (plain)
1
2
3
4
5
6
7
8
9
package sequence

import ()

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