NewPuller returns a puller for zr that returns batches containing up to [PullerBatchBytes] bytes and [PullerBatchValues] values.
(zr sio.Reader)
| 67 | // NewPuller returns a puller for zr that returns batches containing up to |
| 68 | // [PullerBatchBytes] bytes and [PullerBatchValues] values. |
| 69 | func NewPuller(zr sio.Reader) Puller { |
| 70 | return &puller{zr} |
| 71 | } |
| 72 | |
| 73 | type puller struct { |
| 74 | zr sio.Reader |
no outgoing calls