0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 20:25:12 -05:00
denoland-deno/runtime
Liam Murphy 4786e1d92d
fix(runtime): handle race condition in postMessage where worker has terminated (#10239)
The panic was caused by the lack of an error class mapping for
futures::channel::TrySendError, but it shouldn't have been throwing an error in
the first place - when a worker has terminated, postMessage should just return.
The issue was that the termination message hadn't yet been recieved, so it was
carrying on with trying to send the message. This adds another check on the Rust
side for if the channel is closed, and if it is the worker is treated as
terminated.
2021-04-19 16:57:02 +02:00
..
examples feat: blob URL support (#10045) 2021-04-07 15:22:14 +02:00
js fix(#10200): weaken types so non-breaking (#10205) 2021-04-16 22:34:29 +10:00
ops fix(#10182): hang during http server response (#10197) 2021-04-15 18:48:56 -04:00
build.rs refactor: move timers to deno_timers op crate (#10179) 2021-04-14 21:10:48 +02:00
Cargo.toml refactor: move timers to deno_timers op crate (#10179) 2021-04-14 21:10:48 +02:00
colors.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
errors.rs feat: native HTTP bindings (#9935) 2021-04-08 18:34:15 -04:00
fs_util.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
inspector.rs runtime/inspector: pretend to be node (#10115) 2021-04-10 13:12:59 -04:00
js.rs remove macro_use (#9884) 2021-03-26 12:34:25 -04:00
lib.rs refactor: add deno_file op crate (#10019) 2021-04-06 12:55:05 +02:00
metrics.rs refactor: new optimized op-layer using serde_v8 (#9843) 2021-03-31 10:37:38 -04:00
permissions.rs refactor: move timers to deno_timers op crate (#10179) 2021-04-14 21:10:48 +02:00
README.md chore: fix decendents in runtime readme (#9718) 2021-03-08 13:23:46 +01:00
resolve_addr.rs update copyright to 2021 (#9081) 2021-01-10 21:59:07 -05:00
tokio_util.rs upgrade: tokio 1.0 (#8779) 2021-01-11 23:50:02 -08:00
web_worker.rs fix(runtime): handle race condition in postMessage where worker has terminated (#10239) 2021-04-19 16:57:02 +02:00
worker.rs refactor(deno): remove concept of bin & json ops (#10145) 2021-04-12 15:55:05 -04:00

deno_runtime crate

crates docs

This is a slim version of the Deno CLI which removes typescript integration and various tooling (like lint and doc). Basically only JavaScript execution with Deno's operating system bindings (ops).

Stability

This crate is built using battle-tested modules that were originally in deno crate, however the API of this crate is subject to rapid and breaking changes.

MainWorker

The main API of this crate is MainWorker. MainWorker is a structure encapsulating deno_core::JsRuntime with a set of ops used to implement Deno namespace.

When creating a MainWorker implementors must call MainWorker::bootstrap to prepare JS runtime for use.

MainWorker is highly configurable and allows to customize many of the runtime's properties:

  • module loading implementation
  • error formatting
  • support for source maps
  • support for V8 inspector and Chrome Devtools debugger
  • HTTP client user agent, CA certificate
  • random number generator seed

Worker Web API

deno_runtime comes with support for Worker Web API. The Worker API is implemented using WebWorker structure.

When creating a new instance of MainWorker implementors must provide a callback function that is used when creating a new instance of Worker.

All WebWorker instances are descendents of MainWorker which is responsible for setting up communication with child worker. Each WebWorker spawns a new OS thread that is dedicated solely to that worker.