Consumer consumes records from an iterator.
| 15 | |
| 16 | // Consumer consumes records from an iterator. |
| 17 | type Consumer interface { |
| 18 | Consume(Iterator) error |
| 19 | } |
| 20 | |
| 21 | // Transform represents both a record consumer and producer. |
| 22 | // It has an input and output. |
no outgoing calls
no test coverage detected