forked from TrueCloudLab/frostfs-node
1c30414a6c
Core changes: * avoid package-colliding variable naming * avoid using pointers to IDs where unnecessary * avoid using `idSDK` import alias pattern * use `EncodeToString` for protocol string calculation and `String` for printing Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
30 lines
521 B
Go
30 lines
521 B
Go
package neofsapiclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
)
|
|
|
|
type contextPrm struct {
|
|
ctx context.Context
|
|
}
|
|
|
|
// SetContext sets context.Context used for network communication.
|
|
func (x *contextPrm) SetContext(ctx context.Context) {
|
|
x.ctx = ctx
|
|
}
|
|
|
|
type objectAddressPrm struct {
|
|
objAddr oid.Address
|
|
}
|
|
|
|
// SetAddress sets address of the object.
|
|
func (x *objectAddressPrm) SetAddress(addr oid.Address) {
|
|
x.objAddr = addr
|
|
}
|
|
|
|
type getObjectPrm struct {
|
|
contextPrm
|
|
objectAddressPrm
|
|
}
|