Function: jsonrpc-notify
jsonrpc-notify is a byte-compiled function defined in jsonrpc.el.gz.
Signature
(jsonrpc-notify CONNECTION METHOD PARAMS)
Documentation
Notify CONNECTION of something, don't expect a reply.
Source Code
;; Defined in /usr/src/emacs/lisp/jsonrpc.el.gz
(cl-defun jsonrpc-notify (connection method params)
"Notify CONNECTION of something, don't expect a reply."
(jsonrpc-connection-send connection
:method method
:params params))