Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClientConstructor ¶
type ClientConstructor interface {
Get(client.NodeInfo) (client.MultiAddressClient, error)
}
type IDListWriter ¶
IDListWriter is an interface of target component to write list of object identifiers.
type Option ¶
type Option func(*cfg)
Option is a Service's constructor option.
func WithLogger ¶
WithLogger returns option to specify Get service's logger.
type Prm ¶
type Prm struct {
// contains filtered or unexported fields
}
Prm groups parameters of Get service call.
func (*Prm) SetCommonParameters ¶
SetCommonParameters sets common parameters of the operation.
func (*Prm) SetRequestForwarder ¶
func (p *Prm) SetRequestForwarder(f RequestForwarder)
SetRequestForwarder sets callback for forwarding of the original request.
func (*Prm) SetWriter ¶
func (p *Prm) SetWriter(w IDListWriter)
SetWriter sets target component to write list of object identifiers.
func (*Prm) WithContainerID ¶
WithContainerID sets identifier of the container to search the objects.
func (*Prm) WithSearchFilters ¶
func (p *Prm) WithSearchFilters(fs objectSDK.SearchFilters)
WithSearchFilters sets search filters.
type RequestForwarder ¶
type RequestForwarder func(context.Context, coreclient.NodeInfo, coreclient.MultiAddressClient) ([]oid.ID, error)
RequestForwarder is a callback for forwarding of the original Search requests.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service is an utility serving requests of Object.Search service.
func New ¶
func New(e *engine.StorageEngine, cc ClientConstructor, tg *util.TraverserGenerator, ns netmap.Source, ks *util.KeyStorage, opts ...Option, ) *Service
New creates, initializes and returns utility serving Object.Get service requests.