mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-11-23 18:49:17 +08:00
remove unused function
This commit is contained in:
parent
9ac1023362
commit
90182e97fe
@ -30,7 +30,3 @@ func (m *MemorySequencer) SetMax(seenValue uint64) {
|
|||||||
m.counter = seenValue + 1
|
m.counter = seenValue + 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *MemorySequencer) Peek() uint64 {
|
|
||||||
return m.counter
|
|
||||||
}
|
|
||||||
|
@ -3,5 +3,4 @@ package sequence
|
|||||||
type Sequencer interface {
|
type Sequencer interface {
|
||||||
NextFileId(count uint64) uint64
|
NextFileId(count uint64) uint64
|
||||||
SetMax(uint64)
|
SetMax(uint64)
|
||||||
Peek() uint64
|
|
||||||
}
|
}
|
||||||
|
@ -42,8 +42,3 @@ func (m *SnowflakeSequencer) NextFileId(count uint64) uint64 {
|
|||||||
// ignore setmax as we are snowflake
|
// ignore setmax as we are snowflake
|
||||||
func (m *SnowflakeSequencer) SetMax(seenValue uint64) {
|
func (m *SnowflakeSequencer) SetMax(seenValue uint64) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// return a new id as no Peek is stored
|
|
||||||
func (m *SnowflakeSequencer) Peek() uint64 {
|
|
||||||
return uint64(m.node.Generate().Int64())
|
|
||||||
}
|
|
||||||
|
Loading…
Reference in New Issue
Block a user