1667ec9e6d
`object.Address` has been moved to `object/address` `object.ID` has been moved to `object/id` Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
25 lines
614 B
Go
25 lines
614 B
Go
package policer
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/engine"
|
|
addressSDK "github.com/nspcc-dev/neofs-sdk-go/object/address"
|
|
)
|
|
|
|
type jobQueue struct {
|
|
localStorage *engine.StorageEngine
|
|
}
|
|
|
|
func (q *jobQueue) Select(cursor *engine.Cursor, count uint32) ([]*addressSDK.Address, *engine.Cursor, error) {
|
|
prm := new(engine.ListWithCursorPrm)
|
|
prm.WithCursor(cursor)
|
|
prm.WithCount(count)
|
|
|
|
res, err := q.localStorage.ListWithCursor(prm)
|
|
if err != nil {
|
|
return nil, nil, fmt.Errorf("cannot list objects in engine: %w", err)
|
|
}
|
|
|
|
return res.AddressList(), res.Cursor(), nil
|
|
}
|