(ctx context.Context, p []byte, off int64)
| 12 | // and abstract away the name/meta and other details so that the data can be accessed directly and simply |
| 13 | type ContextReader interface { |
| 14 | ReadAt(ctx context.Context, p []byte, off int64) (int, error) |
| 15 | ReadAll(ctx context.Context) ([]byte, error) |
| 16 | |
| 17 | // Return an io.Reader representing the underlying. May not be supported by all implementations |
no outgoing calls