mirror of
https://git.vectorsigma.ru/public/seaweedfs.git
synced 2026-07-29 19:48:43 +00:00
8 lines
111 B
Go
8 lines
111 B
Go
package sequence
|
|
|
|
type Sequencer interface {
|
|
NextFileId(count uint64) uint64
|
|
SetMax(uint64)
|
|
Peek() uint64
|
|
}
|