From 7d919f6fd980ed54785e86892a518f0bdf68f475 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 2 Jul 2024 23:37:54 +0100 Subject: refactor(jupyter): move ZeroMQ server to a separate thread (#24373) Moves the ZeroMQ messaging server to a separate thread. This will allow to run blocking JS code and maintain communication with the notebook frontend. Towards https://github.com/denoland/deno/pull/23592 Towards https://github.com/denoland/deno/pull/24250 Closes https://github.com/denoland/deno/issues/23617 --- cli/tools/repl/mod.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/tools/repl') diff --git a/cli/tools/repl/mod.rs b/cli/tools/repl/mod.rs index db1d75dad..5bd59888d 100644 --- a/cli/tools/repl/mod.rs +++ b/cli/tools/repl/mod.rs @@ -30,6 +30,7 @@ use editor::EditorHelper; use editor::ReplEditor; pub use session::EvaluationOutput; pub use session::ReplSession; +pub use session::TsEvaluateResponse; pub use session::REPL_INTERNALS_NAME; use super::test::create_single_test_event_channel; -- cgit v1.2.3