middleware

package
v2.0.2 Latest Latest
Warning

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

Go to latest
Published: Jan 26, 2019 License: MIT Imports: 4 Imported by: 0

Documentation

Overview

Package middleware contains utilities for Goji Middleware authors.

Unless you are writing middleware for your application, you should avoid importing this package. Instead, use the abstractions provided by your middleware package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Handler

func Handler(ctx context.Context) http.Handler

Handler returns the handler corresponding to the most recently matched Pattern, or nil if no pattern was matched.

The handler returned by this function is the one that will be dispatched to at the end of the middleware stack. If the returned Handler is nil, http.NotFound will be used instead.

func Pattern

func Pattern(ctx context.Context) goji.Pattern

Pattern returns the most recently matched Pattern, or nil if no pattern was matched.

func SetHandler

func SetHandler(ctx context.Context, h http.Handler) context.Context

SetHandler returns a new context in which the given Handler was most recently matched and which consequently will be dispatched to.

func SetPattern

func SetPattern(ctx context.Context, p goji.Pattern) context.Context

SetPattern returns a new context in which the given Pattern is used as the most recently matched pattern.

Types

This section is empty.

Jump to

Keyboard shortcuts

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