Documentation ¶
Index ¶
- type Bucket
- func (b *Bucket) Delete(_ context.Context, name string) error
- func (b *Bucket) Exists(_ context.Context, name string) (bool, error)
- func (b *Bucket) Get(_ 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(_ context.Context, dir string, f func(string) error) error
- func (b *Bucket) Objects() map[string][]byte
- func (b *Bucket) Upload(_ context.Context, name string, r io.Reader) error
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 store.Bucket and shipper.Bucket interfaces against local memory.
func NewBucket ¶
func NewBucket() *Bucket
NewBucket returns a new in memory Bucket. NOTE: Returned bucket is just a naive in memory bucket implementation. For test use cases only.
func (*Bucket) IsObjNotFoundErr ¶
IsObjNotFoundErr returns true if error means that object is not found. Relevant to Get operations.
func (*Bucket) Iter ¶
Iter calls f for each entry in the given directory. The argument to f is the full object name including the prefix of the inspected directory.
Click to show internal directories.
Click to hide internal directories.