Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NetworkInfo ¶
type NetworkInfo interface { netmap.State // Must return the lifespan of the tombstones // in the FrostFS epochs. TombstoneLifetime() (uint64, error) // Returns user ID of the local storage node. Result must not be nil. // New tombstone objects will have the result as an owner ID if removal is executed w/o a session. LocalNodeID() user.ID }
NetworkInfo wraps network state and configurations.
type Option ¶
type Option func(*cfg)
Option is a Service's constructor option.
func WithHeadService ¶
WithHeadService returns option to set Head service to work with object headers.
func WithKeyStorage ¶
func WithKeyStorage(ks *util.KeyStorage) Option
WithKeyStorage returns option to set local private key storage.
func WithLogger ¶
WithLogger returns option to specify Delete service's logger.
func WithNetworkInfo ¶
func WithNetworkInfo(netInfo NetworkInfo) Option
WithNetworkInfo returns option to set network information source.
func WithPutService ¶
WithPutService returns option to specify put service.
func WithSearchService ¶
WithSearchService returns option to set search service.
type Prm ¶
type Prm struct {
// contains filtered or unexported fields
}
Prm groups parameters of Delete service call.
func (*Prm) SetCommonParameters ¶
SetCommonParameters sets common parameters of the operation.
func (*Prm) WithAddress ¶
WithAddress sets address of the object to be removed.
func (*Prm) WithTombstoneAddressTarget ¶
func (p *Prm) WithTombstoneAddressTarget(w TombstoneAddressWriter)
WithTombstoneAddressTarget sets tombstone address destination.
type Service ¶
type Service struct {
// contains filtered or unexported fields
}
Service utility serving requests of Object.Get service.
type TombstoneAddressWriter ¶
TombstoneAddressWriter is an interface of tombstone address setter.