Skip to main content
Module

x/silicon/deps.ts>io.BufWriterSync

Deno module to generate images from source code using Aloxaf/silicon.
Go to Latest
class io.BufWriterSync
implements WriterSync
extends AbstractBufBase
import { io } from "https://deno.land/x/silicon@v0.0.4/deps.ts";
const { BufWriterSync } = io;

BufWriterSync implements buffering for a deno.WriterSync object. If an error occurs writing to a WriterSync, no more data will be accepted and all subsequent writes, and flush(), will return the error. After all data has been written, the client should call the flush() method to guarantee all data has been forwarded to the underlying deno.WriterSync.

Constructors

new
BufWriterSync(writer: WriterSync, size?: number)

Methods

Flush writes any buffered data to the underlying io.WriterSync.

reset(w: WriterSync)

Discards any unflushed buffered data, clears any error, and resets buffer to write its output to w.

writeSync(data: Uint8Array): number

Writes the contents of data into the buffer. If the contents won't fully fit into the buffer, those bytes that can are copied into the buffer, the buffer is the flushed to the writer and the remaining bytes are copied into the now empty buffer.

Static Methods

create(writer: WriterSync, size?: number): BufWriterSync

return new BufWriterSync unless writer is BufWriterSync