1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/core
Bartek Iwańczuk 79b3bc05d6
workers: basic event loop (#3828)
* establish basic event loop for workers
* make "self.close()" inside worker
* remove "runWorkerMessageLoop() - instead manually call global function 
  in Rust when message arrives. This is done in preparation for structured clone
* refactor "WorkerChannel" and use distinct structs for internal 
  and external channels;  "WorkerChannelsInternal" and "WorkerHandle"
* move "State.worker_channels_internal" to "Worker.internal_channels"
* add "WorkerEvent" enum for child->host communication; 
  currently "Message(Buf)" and  "Error(ErrBox)" variants are supported
* add tests for nested workers
* add tests for worker throwing error on startup
2020-02-11 10:04:59 +01:00
..
examples Refactor deno_core_http_bench and make it single-threaded (#3903) 2020-02-07 18:17:03 -08:00
any_error.rs Refactor error tracking and scope juggling in deno_core (#3783) 2020-01-25 14:31:42 +01:00
bindings.rs Refactor error tracking and scope juggling in deno_core (#3783) 2020-01-25 14:31:42 +01:00
Cargo.toml Refactor deno_core_http_bench and make it single-threaded (#3903) 2020-02-07 18:17:03 -08:00
es_isolate.rs workers: basic event loop (#3828) 2020-02-11 10:04:59 +01:00
flags.rs Replace libdeno with rusty_v8 (#3556) 2020-01-05 09:19:29 -05:00
isolate.rs No longer require aligned buffer for shared queue (#3935) 2020-02-09 10:54:16 -08:00
js_errors.rs Remove //tests symlink (#3849) 2020-02-02 16:55:22 -05:00
lib.rs refactor: Use Tokio's single-threaded runtime (#3844) 2020-02-03 18:08:44 -05:00
module_specifier.rs fix typos (#3573) 2020-01-02 07:48:46 -05:00
modules.rs refactor: rename ThreadSafeState, use RefCell for mutable state (#3931) 2020-02-08 20:34:31 +01:00
ops.rs refactor: Use Tokio's single-threaded runtime (#3844) 2020-02-03 18:08:44 -05:00
plugins.rs refactor: Use Tokio's single-threaded runtime (#3844) 2020-02-03 18:08:44 -05:00
README.md update readmes (#3765) 2020-01-23 22:32:52 +01:00
resources.rs Add blanket impl for the 'Resource' trait (#3903) 2020-02-07 17:18:28 -08:00
shared_queue.js Reland "Create an old program to be used in snapshot." (#3747) 2020-01-22 20:18:01 +01:00
shared_queue.rs No longer require aligned buffer for shared queue (#3935) 2020-02-09 10:54:16 -08:00
shared_queue_test.js Happy new year! (#3578) 2020-01-02 15:13:47 -05:00

Deno Core Crate

crates docs

The main dependency of this crate is rusty_v8, which provides the V8-Rust bindings.

This Rust crate contains the essential V8 bindings for Deno's command-line interface (Deno CLI). The main abstraction here is the Isolate which provides a way to execute JavaScript. The Isolate is modeled as a Future<Item=(), Error=JSError> which completes once all of its ops have completed.

In order to bind Rust functions into JavaScript, use the Deno.core.dispatch() function to trigger the "dispatch" callback in Rust. The user is responsible for encoding both the request and response into a Uint8Array.

Documentation for this crate is thin at the moment. Please see http_bench.rs as a simple example of usage.

TypeScript support and a lot of other functionality is not available at this layer. See the cli for that.