mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
0d03fafbfe
Refactors handlers.rs The idea is that all Deno "ops" (aka bindings) should map onto a Rust Future. By setting the "sync" flag in the Base message users can determine if the future is executed immediately or put on the event loop. In the case of async futures, a promise is automatically created. Errors are automatically forwarded and raised. TODO: - The file system ops in src/handler.rs are not using the thread pool yet. This will be done in the future using tokio_threadpool::blocking. That is, if you try to call them asynchronously, you will get a promise and it will act asynchronous, but currently it will be blocking. - Handlers in src/handler.rs returned boxed futures. This was to make it easy while developing. We should try to remove this allocation. |
||
---|---|---|
.. | ||
binding.cc | ||
deno.h | ||
file_util.cc | ||
file_util.h | ||
file_util_test.cc | ||
from_filesystem.cc | ||
from_snapshot.cc | ||
internal.h | ||
libdeno_test.cc | ||
libdeno_test.js | ||
snapshot_creator.cc | ||
test.cc |