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

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