Function: cider-nrepl-send-unhandled-request

cider-nrepl-send-unhandled-request is a byte-compiled function defined in cider-client.el.

Signature

(cider-nrepl-send-unhandled-request REQUEST &optional CONNECTION)

Documentation

Send REQUEST to the nREPL CONNECTION and ignore any responses.

Immediately mark the REQUEST as done. Return the id of the sent message.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-client.el
(defun cider-nrepl-send-unhandled-request (request &optional connection)
  "Send REQUEST to the nREPL CONNECTION and ignore any responses.
Immediately mark the REQUEST as done.  Return the id of the sent message."
  (let* ((conn (or connection (cider-current-repl 'infer 'ensure)))
         (id (nrepl-send-request request #'ignore conn)))
    (with-current-buffer conn
      (nrepl--mark-id-completed id))
    id))