4e8cc51e7b
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
12 lines
311 B
Go
12 lines
311 B
Go
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 {
|
|
return s.info.WeightValues
|
|
}
|