class Protocol::HTTP::Body::Writable::Output

def close(error = nil)

def close(error = nil)
	@closed = true
	
	if error
		@writable.close(error)
	else
		@writable.close_write
	end
end