95893927aa
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
30 lines
522 B
Go
30 lines
522 B
Go
package neofsapiclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/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
|
|
}
|