| 12 | ) |
| 13 | |
| 14 | type LTXFileOpener interface { |
| 15 | OpenLTXFile(ctx context.Context, level int, minTXID, maxTXID ltx.TXID, offset, size int64) (io.ReadCloser, error) |
| 16 | } |
| 17 | |
| 18 | // resumableReader wraps an io.ReadCloser from a remote storage backend with |
| 19 | // automatic reconnection on read errors. |
no outgoing calls
no test coverage detected