(context.Context, Pushdown)
| 25 | // implementation of the Scanner interface. |
| 26 | type ScannerAble interface { |
| 27 | NewScanner(context.Context, Pushdown) (Scanner, error) |
| 28 | } |
| 29 | |
| 30 | // A Scanner is a Batch source that also provides progress updates. |
no outgoing calls