1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-06-15 15:11:00 +02:00
seaweedfs/weed/storage/needle/volume_id.go
2019-04-20 18:39:06 +08:00

19 lines
351 B
Go

package needle
import (
"strconv"
)
type VolumeId uint32
func NewVolumeId(vid string) (VolumeId, error) {
volumeId, err := strconv.ParseUint(vid, 10, 64)
return VolumeId(volumeId), err
}
func (vid VolumeId) String() string {
return strconv.FormatUint(uint64(vid), 10)
}
func (vid VolumeId) Next() VolumeId {
return VolumeId(uint32(vid) + 1)
}