diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-07-02 23:37:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 00:37:54 +0200 |
commit | 7d919f6fd980ed54785e86892a518f0bdf68f475 (patch) | |
tree | dda1342e996b4d8d19ff0aa17892590822d2b56f /cli/tools/repl | |
parent | c13b6d1413859d03b41b97d4c671fccfd388b2cc (diff) |
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
Diffstat (limited to 'cli/tools/repl')
-rw-r--r-- | cli/tools/repl/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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; |