class

Marten::Middleware

Inherits Reference / Object

Represents an abstract middleware.

A middleware is a simple class that implements a #call method that can be hooked into Marten's request/response lifecycle. Middlewares can be used to perform simple alterations based on the incoming HTTP request and the returned HTTP response: for example they can be used to activate a specific I18n locale, to identify a currently logged in user, etc.

Instance methods

Calls the middleware for a given HTTP request and returns a HTTP response.

This method must be implemented by subclasses: it takes a request argument (the current HTTP request) and a get_response proc that allows to get the final response. This proc might actually call the next middleware in the chain of configured middlewares, or the final matched handler. That way, the current middleware have the ability to intercept any incoming request and the associated response, and to modify them if applicable.

Source
next

:nodoc

Source
next=(next __arg0 : Nil | Middleware)

:nodoc

Source

Nested types