unzipdecoder.md 1.1 KB

Interface: UnzipDecoder

A decoder for files in ZIP streams

Hierarchy

  • UnzipDecoder

Implemented by

Index

Properties

Methods

Properties

ondata

ondata: AsyncFlateStreamHandler

The handler to call whenever data is available


terminate

Optional terminate: AsyncTerminable

A method to terminate any internal workers used by the stream. Subsequent calls to push() should silently fail.

Methods

push

push(data: Uint8Array, final: boolean): void

Pushes a chunk to be decompressed

Parameters:

Name Type Description
data Uint8Array The data in this chunk. Do not consume (detach) this data.
final boolean Whether this is the last chunk in the data stream

Returns: void