rong_stream 0.3.0

Stream module for RongJS
docs.rs failed to build rong_stream-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rong_stream-0.1.1

rong_stream

Web Streams API implementation providing globally available streaming primitives.

JS APIs

  • ReadableStream — readable stream of data
    • getReader() — acquire a reader for pull-based consumption
    • pipeTo(writable) — pipe to a writable stream
    • pipeThrough(transform) — pipe through an object exposing readable and writable
  • WritableStream — writable stream of data
    • getWriter() — acquire a writer for push-based writing
  • CompressionStream — transform-like stream for gzip, deflate, and deflate-raw
    • readable — compressed output stream
    • writable — uncompressed input stream
  • DecompressionStream — transform-like stream for gzip, deflate, and deflate-raw
    • readable — decompressed output stream
    • writable — compressed input stream