Documentation ¶
Index ¶
- type Bucket
- func (b *Bucket) Attributes(_ context.Context, name string) (objstore.ObjectAttributes, error)
- func (b *Bucket) Close() error
- func (b *Bucket) Delete(_ context.Context, name string) error
- func (b *Bucket) Exists(_ context.Context, name string) (bool, error)
- func (b *Bucket) Get(ctx context.Context, name string) (io.ReadCloser, error)
- func (b *Bucket) GetRange(_ context.Context, name string, off, length int64) (io.ReadCloser, error)
- func (b *Bucket) IsObjNotFoundErr(err error) bool
- func (b *Bucket) Iter(ctx context.Context, dir string, f func(string) error, ...) error
- func (b *Bucket) Name() string
- func (b *Bucket) Upload(_ context.Context, name string, r io.Reader) (err error)
- type Config
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bucket ¶
type Bucket struct {
// contains filtered or unexported fields
}
Bucket implements the objstore.Bucket interfaces against filesystem that binary runs on. Methods from Bucket interface are thread-safe. Objects are assumed to be immutable. NOTE: It does not follow symbolic links.
func NewBucketFromConfig ¶
NewBucketFromConfig returns a new filesystem.Bucket from config.
func (*Bucket) Attributes ¶
Attributes returns information about the specified object.
func (*Bucket) IsObjNotFoundErr ¶
IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations.
Click to show internal directories.
Click to hide internal directories.