chunkreader

package module
v1.0.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 30, 2019 License: MIT Imports: 1 Imported by: 1

README

Build Status

chunkreader

Package chunkreader provides an opinionated, efficient buffered reader.

Extracted from original implementation in https://github.com/jackc/pgx.

Documentation

Overview

Package chunkreader provides an opinionated, efficient buffered reader.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ChunkReader

type ChunkReader struct {
	// contains filtered or unexported fields
}

ChunkReader is a io.Reader wrapper that minimizes reads and memory allocations.

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
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL