class Protocol::HTTP::Middleware::Builder

def to_app

@returns [Middleware] The application.

Convert the builder to an application by chaining the middleware together.
def to_app
	@use.reverse.inject(@app) {|app, use| use.call(app)}
end