http

package
v0.0.0-...-41cd4ca Latest Latest
Warning

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

Go to latest
Published: Sep 10, 2022 License: AGPL-3.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Module

type Module interface {
	Name() string
	Route(s *Server) error
}

Module represents a module that can be added to a http server.

type ResponseWriter

type ResponseWriter struct {
	http.ResponseWriter
	// contains filtered or unexported fields
}

ResponseWriter is a ResponseWriter that keeps track of status and body size.

func NewResponseWriter

func NewResponseWriter(w http.ResponseWriter) *ResponseWriter

NewResponseWriter creates a new ResponseWriter.

func (*ResponseWriter) BodyLength

func (r *ResponseWriter) BodyLength() int

BodyLength returns the response body length.

func (*ResponseWriter) Status

func (r *ResponseWriter) Status() int

Status returns the status code of the response.

func (*ResponseWriter) Write

func (r *ResponseWriter) Write(b []byte) (int, error)

Write to the response writer, also updating body length.

func (*ResponseWriter) WriteHeader

func (r *ResponseWriter) WriteHeader(status int)

WriteHeader sets the status of the response.

type Server

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

Server is a http 2 web server.

func NewServer

func NewServer(_ context.Context, service string) (*Server, error)

NewServer creates a new http web server.

func (*Server) HandleFunc

func (s *Server) HandleFunc(path string, f func(http.ResponseWriter, *http.Request)) *mux.Route

HandleFunc attaches a function to a path.

func (*Server) Host

func (s *Server) Host(host string) *mux.Route

Host attaches a new route url path prefix.

func (*Server) MiddlewareMetrics

func (s *Server) MiddlewareMetrics(next http.Handler) http.Handler

func (*Server) PathPrefix

func (s *Server) PathPrefix(path string) *mux.Route

PathPrefix attaches a new route url path prefix.

func (*Server) Start

func (s *Server) Start() error

Start starts the web server.

func (*Server) Stop

func (s *Server) Stop(ctx context.Context) error

Stop shuts down the web server.

func (*Server) WrapInMiddlewares

func (s *Server) WrapInMiddlewares(service string) mux.MiddlewareFunc

WrapInMiddlewares wraps an http.Handler in the server's middleware.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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