change count to uint64 to fix #109

fix https://github.com/chrislusf/weed-fs/issues/109
This commit is contained in:
chrislusf
2015-04-06 14:17:36 -07:00
parent c37a20178e
commit 3ece066700
8 changed files with 42 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
package sequence
type Sequencer interface {
NextFileId(count int) (uint64, int)
NextFileId(count uint64) (uint64, uint64)
SetMax(uint64)
Peek() uint64
}