Function: jsonrpc-connection-send

jsonrpc-connection-send is a byte-compiled function defined in jsonrpc.el.gz.

Signature

(jsonrpc-connection-send CONN &key ID METHOD PARAMS RESULT ERROR)

Documentation

Send a JSONRPC message to connection CONN.

ID, METHOD, PARAMS, RESULT and ERROR.

View in manual

Implementations

(jsonrpc-connection-send (ARG1 jsonrpc-process-connection) &rest REST) in `jsonrpc.el'.

Send MESSAGE, a JSON object, to CONNECTION.

Source Code

;; Defined in /usr/src/emacs/lisp/jsonrpc.el.gz
;;; API mandatory
(cl-defgeneric jsonrpc-connection-send (conn &key id method params result error)
  "Send a JSONRPC message to connection CONN.
ID, METHOD, PARAMS, RESULT and ERROR.")