Function: nrepl-request:interrupt

nrepl-request:interrupt is a byte-compiled function defined in nrepl-client.el.

Signature

(nrepl-request:interrupt PENDING-REQUEST-ID CALLBACK CONNECTION)

Documentation

Send an :interrupt request for PENDING-REQUEST-ID.

The request is dispatched using CONNECTION. Register CALLBACK as the response handler.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-request:interrupt (pending-request-id callback connection)
  "Send an :interrupt request for PENDING-REQUEST-ID.
The request is dispatched using CONNECTION.
Register CALLBACK as the response handler."
  (nrepl-send-request `("op" "interrupt"
                        "interrupt-id" ,pending-request-id)
                      callback
                      connection))