Reader returns an io.ReadSeeker+io.ReaderAt that can be used to read actual data from the AsyncBuffer
()
| 223 | |
| 224 | // Reader returns an io.ReadSeeker+io.ReaderAt that can be used to read actual data from the AsyncBuffer |
| 225 | func (ab *AsyncBuffer) Reader() *Reader { |
| 226 | return &Reader{ab: ab, pos: 0} |
| 227 | } |
| 228 | |
| 229 | // ReadAt reads data from the AsyncBuffer at the given offset. |
| 230 | // |
nothing calls this directly
no outgoing calls
no test coverage detected