http

package
v0.35.0 Latest Latest
Warning

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

Go to latest
Published: Jun 3, 2022 License: Apache-2.0 Imports: 13 Imported by: 157

Documentation

Overview

Package http implements crazy ideas for http optimizations that should be mostly std compatible.

Index

Constants

This section is empty.

Variables

View Source
var ErrNotImplemented = errors.New("not implemented")

ErrNotImplemented reports that handler is not implemented.

Functions

func AcquireRequest

func AcquireRequest() *http.Request

AcquireRequest returns new *http.Request from pool.

func CreateMultipartBody added in v0.35.0

func CreateMultipartBody(cb func(mw *multipart.Writer) error) (
	getBody func() (io.ReadCloser, error),
	contentType string,
)

CreateMultipartBody is helper for streaming multipart/form-data.

func NewRequest

func NewRequest(ctx context.Context, method string, u *url.URL, body io.Reader) *http.Request

NewRequest is optimized version of http.NewRequestWithContext.

func PutRequest

func PutRequest(r *http.Request)

PutRequest resets *http.Request and puts to pool.

func Set

func Set(req *http.Request, ctx context.Context)

Set sets request context without shallow copy of request.

func SetValue

func SetValue(req *http.Request, k, v interface{})

SetValue wraps context.WithValue call on request context.

Types

type Client

type Client interface {
	Do(r *http.Request) (*http.Response, error)
}

Client represents http client.

type MultipartFile added in v0.35.0

type MultipartFile struct {
	Name string
	File io.Reader
}

MultipartFile is multipart form file.

func (MultipartFile) WriteMultipart added in v0.35.0

func (m MultipartFile) WriteMultipart(fieldName string, w *multipart.Writer) error

WriteMultipart writes data from reader to given multipart.Writer as a form file.

Jump to

Keyboard shortcuts

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