forked from TrueCloudLab/frostfs-node
923f84722a
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
30 lines
528 B
Go
30 lines
528 B
Go
package frostfsapiclient
|
|
|
|
import (
|
|
"context"
|
|
|
|
oid "github.com/TrueCloudLab/frostfs-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
|
|
}
|