forked from TrueCloudLab/frostfs-node
13 lines
300 B
Go
13 lines
300 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.weight
|
||
|
}
|