Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Meta ¶
type Meta struct { pb.SerializableMeta Modified time.Time Expiration time.Time Size int64 Checksum string }
Meta is the full object metadata
type Store ¶
type Store interface { Get(ctx context.Context, path storj.Path, object storj.Object) (rr ranger.Ranger, err error) Put(ctx context.Context, path storj.Path, data io.Reader, metadata pb.SerializableMeta, expiration time.Time) (meta Meta, err error) Delete(ctx context.Context, path storj.Path) (err error) List(ctx context.Context, prefix, startAfter storj.Path, recursive bool, limit int, metaFlags uint32) (items []ListItem, more bool, err error) }
Store for objects
Click to show internal directories.
Click to hide internal directories.