Load runs fn with a reader that yields the contents of the file at h at the given offset. If length is larger than zero, only a portion of the file is read. If the length is larger than zero and the file is too short to return the requested length bytes, then an error MUST be returned that is recogn
(ctx context.Context, h Handle, length int, offset int64, fn func(rd io.Reader) error)
| 43 | // |
| 44 | // Implementations are encouraged to use util.DefaultLoad |
| 45 | Load(ctx context.Context, h Handle, length int, offset int64, fn func(rd io.Reader) error) error |
| 46 | |
| 47 | // Stat returns information about the File identified by h. |
| 48 | Stat(ctx context.Context, h Handle) (FileInfo, error) |
no outgoing calls