frostfs-node/pkg/services/container/announcement/load/route/placement/deps.go
Evgenii Stratonikov 95893927aa *: replace neofs-api-go with neofs-sdk-go
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
2021-11-12 17:29:09 +03:00

14 lines
486 B
Go

package placementrouter
import (
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
"github.com/nspcc-dev/neofs-sdk-go/netmap"
)
// PlacementBuilder describes interface of NeoFS placement calculator.
type PlacementBuilder interface {
// BuildPlacement must compose and sort (according to a specific algorithm)
// storage nodes from the container with identifier cid using network map
// of particular epoch.
BuildPlacement(epoch uint64, cid *cid.ID) ([]netmap.Nodes, error)
}