2020-11-17 12:23:15 +00:00
|
|
|
package shard
|
|
|
|
|
|
|
|
// WeightValues groups values of Shard weight parameters.
|
|
|
|
type WeightValues struct {
|
|
|
|
// Amount of free disk space. Measured in kilobytes.
|
|
|
|
FreeSpace uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
// WeightValues returns current weight values of the Shard.
|
|
|
|
func (s *Shard) WeightValues() WeightValues {
|
2020-11-19 15:04:09 +00:00
|
|
|
return s.info.WeightValues
|
2020-11-17 12:23:15 +00:00
|
|
|
}
|