forked from TrueCloudLab/frostfs-node
31 lines
526 B
Go
31 lines
526 B
Go
|
package neofsapiclient
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/nspcc-dev/neofs-api-go/pkg/object"
|
||
|
)
|
||
|
|
||
|
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 *object.Address
|
||
|
}
|
||
|
|
||
|
// SetAddress sets address of the object.
|
||
|
func (x *objectAddressPrm) SetAddress(addr *object.Address) {
|
||
|
x.objAddr = addr
|
||
|
}
|
||
|
|
||
|
type getObjectPrm struct {
|
||
|
contextPrm
|
||
|
objectAddressPrm
|
||
|
}
|