diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-11-09 19:26:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 19:26:17 +0100 |
commit | 375ce63c6390cf7710210ce22f14a2b5a02cbfc3 (patch) | |
tree | 85100876e5e0b50514385ae3c7ce08493c82b38b /ext/net/README.md | |
parent | 1eae6c139ee1dac28df57d67d993792b773fa1ff (diff) |
feat(core): streams (#12596)
This allows resources to be "streams" by implementing read/write/shutdown. These streams are implicit since their nature (read/write/duplex) isn't known until called, but we could easily add another method to explicitly tag resources as streams.
`op_read/op_write/op_shutdown` are now builtin ops provided by `deno_core`
Note: this current implementation is simple & straightforward but it results in an additional alloc per read/write call
Closes #12556
Diffstat (limited to 'ext/net/README.md')
-rw-r--r-- | ext/net/README.md | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/net/README.md b/ext/net/README.md index e1c428143..1928fc375 100644 --- a/ext/net/README.md +++ b/ext/net/README.md @@ -9,9 +9,6 @@ This crate depends on following extensions: Following ops are provided: -- "op_net_read_async" -- "op_net_write_async" -- "op_net_shutdown" - "op_net_accept" - "op_net_connect" - "op_net_listen" |