List returns all objects one level beneath the provided keypath
(ctx context.Context, keypath KeyPath)
| 65 | type RawReader interface { |
| 66 | // List returns all objects one level beneath the provided keypath |
| 67 | List(ctx context.Context, keypath KeyPath) ([]string, error) |
| 68 | // ListBlocks returns all blockIDs and compactedBlockIDs for a tenant. |
| 69 | ListBlocks(ctx context.Context, tenant string) (blockIDs []uuid.UUID, compactedBlockIDs []uuid.UUID, err error) |
| 70 | // Find executes the FindFunc for each object in the backend starting at the specified keypath. Collection of these objects is the callers responsibility. |
no outgoing calls