mirror of
https://github.com/chrislusf/seaweedfs
synced 2025-07-17 09:02:47 +02:00
6 lines
96 B
Go
6 lines
96 B
Go
package sequence
|
|
|
|
type Sequencer interface {
|
|
NextFileId(count uint64) uint64
|
|
SetMax(uint64)
|
|
}
|