mirror of
https://github.com/vale981/emacs-jupyter
synced 2025-03-08 16:41:39 -05:00
Rename jupyter-kernel-process-io
to jupyter-zmq-io
This commit is contained in:
parent
c47345f6ec
commit
11456b4a4a
1 changed files with 4 additions and 3 deletions
|
@ -91,8 +91,9 @@ Call the next method if ARGS does not contain :spec."
|
|||
|
||||
;;; Client connection
|
||||
|
||||
(defun jupyter-kernel-process-io (session)
|
||||
(let* ((channels '(:shell :iopub :stdin))
|
||||
(cl-defmethod jupyter-zmq-io ((kernel jupyter-kernel-process))
|
||||
(let* ((session (jupyter-kernel-session kernel))
|
||||
(channels '(:shell :iopub :stdin))
|
||||
(ch-group (let ((endpoints (jupyter-session-endpoints session)))
|
||||
(cl-loop
|
||||
for ch in channels
|
||||
|
@ -212,7 +213,7 @@ Call the next method if ARGS does not contain :spec."
|
|||
|
||||
(cl-defmethod jupyter-io ((kernel jupyter-kernel-process))
|
||||
"Return an I/O connection to KERNEL's session."
|
||||
(jupyter-kernel-process-io (jupyter-kernel-session kernel)))
|
||||
(jupyter-zmq-io kernel))
|
||||
|
||||
;;; Kernel management
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue