httpserver

package
v0.23.1 Latest Latest
Warning

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

Go to latest
Published: Dec 7, 2023 License: AGPL-3.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type HTTPServer

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

HTTPServer wraps the default net/http server to add the ability to use middlewares and support for the supervisor.Service interface.

func New

func New(srv *http.Server) *HTTPServer

New creates a new HTTPServer instance.

func (*HTTPServer) Addr

func (s *HTTPServer) Addr() net.Addr

Addr returns the server's network address.

func (*HTTPServer) ServeHTTP

func (s *HTTPServer) ServeHTTP(rw http.ResponseWriter, r *http.Request)

ServeHTTP prepares middlewares stack if necessary and calls ServerHTTP on the wrapped server.

func (*HTTPServer) SetHandler added in v0.9.0

func (s *HTTPServer) SetHandler(handler http.Handler)

SetHandler sets the handler for the server.

func (*HTTPServer) Start

func (s *HTTPServer) Start(ctx context.Context) error

Start implements the supervisor.Service interface. It starts HTTP server.

func (*HTTPServer) Use

func (s *HTTPServer) Use(m ...Middleware)

Use adds a middleware. Middlewares will be called in the reverse order they were added.

func (*HTTPServer) Wait

func (s *HTTPServer) Wait() <-chan error

Wait implements the supervisor.Service interface.

type Middleware

type Middleware interface {
	Handle(http.Handler) http.Handler
}

type MiddlewareFunc

type MiddlewareFunc func(http.Handler) http.Handler

func (MiddlewareFunc) Handle

func (m MiddlewareFunc) Handle(h http.Handler) http.Handler

type NullServer added in v0.13.3

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

func (*NullServer) Addr added in v0.13.4

func (s *NullServer) Addr() net.Addr

func (*NullServer) SetHandler added in v0.13.3

func (s *NullServer) SetHandler(http.Handler)

func (*NullServer) Start added in v0.13.3

func (s *NullServer) Start(ctx context.Context) error

func (*NullServer) Wait added in v0.13.3

func (s *NullServer) Wait() <-chan error

type Service added in v0.13.3

type Service interface {
	supervisor.Service
	SetHandler(http.Handler)
	Addr() net.Addr
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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