package chunkreader
import "github.com/jackc/pgx/chunkreader"
Index ¶
- type ChunkReader
- func NewChunkReader(r io.Reader) *ChunkReader
- func NewChunkReaderEx(r io.Reader, options Options) (*ChunkReader, error)
- func (r *ChunkReader) Next(n int) (buf []byte, err error)
- type Options
Types ¶
type ChunkReader ¶
type ChunkReader struct {
// contains filtered or unexported fields
}
func NewChunkReader ¶
func NewChunkReader(r io.Reader) *ChunkReader
func NewChunkReaderEx ¶
func NewChunkReaderEx(r io.Reader, options Options) (*ChunkReader, error)
func (*ChunkReader) Next ¶
func (r *ChunkReader) Next(n int) (buf []byte, err error)
Next returns buf filled with the next n bytes. If an error occurs, buf will be nil.
type Options ¶
type Options struct { MinBufLen int // Minimum buffer length }
Source Files ¶
- Version
- v3.6.2+incompatible (latest)
- Published
- Jan 24, 2020
- Platform
- linux/amd64
- Imports
- 1 packages
- Last checked
- 2 weeks ago –
Tools for package owners.