class Protocol::HTTP::Middleware

def initialize(delegate)

@parameter delegate [Object] The delegate object. A delegate is used for passing along requests that are not handled by *this* middleware.

Initialize the middleware with the given delegate.
def initialize(delegate)
	@delegate = delegate
end