2021-10-27 12:12:05 +00:00
|
|
|
package neofsapiclient
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-11-10 07:08:33 +00:00
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
2021-10-27 12:12:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|