class Protocol::HTTP::AcceptEncoding

def initialize(delegate, wrappers = DEFAULT_WRAPPERS)

@parameter wrappers [Hash] A hash of encoding names to wrapper functions.
@parameter delegate [Protocol::HTTP::Middleware] The delegate middleware.

Initialize the middleware with the given delegate and wrappers.
def initialize(delegate, wrappers = DEFAULT_WRAPPERS)
	super(delegate)
	
	@accept_encoding = wrappers.keys.join(", ")
	@wrappers = wrappers
end