http

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: Jul 8, 2018 License: Apache-2.0 Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// DefaultHealthCheck returns always healthy.
	DefaultHealthCheck = func() HealthStatus { return Healthy }
)

Functions

func DefaultMiddleware

func DefaultMiddleware(path string, next http.HandlerFunc) http.HandlerFunc

DefaultMiddleware which handles tracing and recovery.

func RecoveryMiddleware

func RecoveryMiddleware(next http.HandlerFunc) http.HandlerFunc

RecoveryMiddleware for recovering from failed requests.

func TracingMiddleware added in v0.3.0

func TracingMiddleware(path string, next http.HandlerFunc) http.HandlerFunc

TracingMiddleware for handling tracing and metrics.

Types

type Component added in v0.2.0

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

Component implementation of HTTP.

func New

func New(oo ...OptionFunc) (*Component, error)

New returns a new component.

func (*Component) Run added in v0.2.0

func (s *Component) Run(ctx context.Context) error

Run starts the HTTP server.

func (*Component) Shutdown added in v0.2.0

func (s *Component) Shutdown(ctx context.Context) error

Shutdown the component.

type HealthCheckFunc

type HealthCheckFunc func() HealthStatus

HealthCheckFunc defines a function type for implementing a health check.

type HealthStatus

type HealthStatus int

HealthStatus type representing the health of the service via HTTP component.

const (
	// Initializing represents a state when warming up and before the component is Healthy.
	Initializing HealthStatus = 0
	// Healthy represents a state defining a healthy state.
	Healthy HealthStatus = 1
	// Unhealthy represents a state defining a unhealthy state.
	Unhealthy HealthStatus = 2
)

type OptionFunc added in v0.4.0

type OptionFunc func(*Component) error

OptionFunc defines a option func for the HTTP component.

func HealthCheck added in v0.2.0

func HealthCheck(hcf HealthCheckFunc) OptionFunc

HealthCheck option for setting the health check function of the HTTP component.

func Port added in v0.2.0

func Port(port int) OptionFunc

Port option for setting the ports of the HTTP component.

func Routes added in v0.2.0

func Routes(rr []Route) OptionFunc

Routes option for setting the routes of the HTTP component.

type Route

type Route struct {
	Pattern string
	Method  string
	Handler http.HandlerFunc
	Trace   bool
}

Route definition of a HTTP route.

func NewRoute

func NewRoute(p string, m string, pr sync.ProcessorFunc, trace bool) Route

NewRoute creates a new route from a generic handler.

func NewRouteRaw added in v0.2.0

func NewRouteRaw(p string, m string, h http.HandlerFunc) Route

NewRouteRaw creates a new route from a HTTP handler.

Jump to

Keyboard shortcuts

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