Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/msgpack_rpc/deps.ts>io.iter

🦕 Deno module to support msgpack-rpc
Go to Latest
function io.iter
import { io } from "https://deno.land/x/msgpack_rpc@v3.1.6/deps.ts";
const { iter } = io;

Turns a Reader, r, into an async iterator.

import { iter } from "./util.ts";

let f = await Deno.open("/etc/passwd");
for await (const chunk of iter(f)) {
  console.log(chunk);
}
f.close();

Second argument can be used to tune size of a buffer. Default size of the buffer is 32kB.

import { iter } from "./util.ts";

let f = await Deno.open("/etc/passwd");
const it = iter(f, {
  bufSize: 1024 * 1024
});
for await (const chunk of it) {
  console.log(chunk);
}
f.close();

Iterator uses an internal buffer of fixed size for efficiency; it returns a view on that buffer on each iteration. It is therefore caller's responsibility to copy contents of the buffer if needed; otherwise the next iteration will overwrite contents of previously returned chunk.

Parameters

optional
options: { bufSize?: number; }

Returns

AsyncIterableIterator<Uint8Array>