summaryrefslogtreecommitdiff
path: root/src/isolate.rs
AgeCommit message (Collapse)Author
2018-10-03timers: implement timers in javascriptBert Belder
2018-09-27Support zero-copy data in libdeno.send(). (#838)Ryan Dahl
This is a large API refactor of deno.h which replaces deno_send() and deno_set_response() with deno_respond(). It also adds a req_id parameter to the deno_recv_cb. Make writeFile/writeFileSync use it.
2018-09-25Add SetGlobalTimeout().Ryan Dahl
To be used for a timers implementation soon.
2018-09-25Make Deno multithreaded.Ryan Dahl
By using the tokio default runtime. This patch makes all of the ops thread safe. Adds libdeno to JS globals to make for easier testing. Preliminary work for #733.
2018-09-22Rename deno.argv, libdeno::DenoC and deno_set_flags (#796)ztplz
2018-09-17Isolate::execute doesn't need mutability.Ryan Dahl
2018-09-17Rename Deno to Isolate and move to own file.Ryan Dahl