Method: (SHUTDOWN-BACKEND HTTPD-BACKEND)

Documentation

This would stop the single therad httpd backend if that made any sense. Stopping the single therad backend requires nothing more than getting STARTUP-BACKEND to return (either normally or by chosing you implementation's abort restart after a break).

Source

(defmethod shutdown-backend ((backend httpd-backend) &rest init-args)
  "This would stop the single therad httpd backend if that made any sense.

Stopping the single therad backend requires nothing more than
getting STARTUP-BACKEND to return (either normally or by chosing
you implementation's abort restart after a break)."
  (declare (ignore init-args))
  backend)
Source Context