Skip to content

Latest commit

 

History

History
101 lines (57 loc) · 2.67 KB

UsingDisposable.md

File metadata and controls

101 lines (57 loc) · 2.67 KB

quickjs-emscriptenquickjs-emscriptenReadme | Exports


quickjs-emscripten / quickjs-emscripten / UsingDisposable

Class: abstract UsingDisposable

Base abstract class that helps implement Disposable by providing a default implementation of [Symbol.dispose]([object Object]).

Contents

Extended By

Implements

Constructors

new UsingDisposable(undefined)

new UsingDisposable(): UsingDisposable

Returns

UsingDisposable

Properties

abstract alive

abstract readonly alive: boolean

Implementation of

quickjs-emscripten.Disposable.alive

Source

packages/quickjs-emscripten-core/src/lifetime.ts:39

Methods

[dispose]()

[dispose](): void

Just calls the standard .dispose() method of this class.

Returns

void

Implementation of

quickjs-emscripten.Disposable.[dispose]

Source

packages/quickjs-emscripten-core/src/lifetime.ts:47


abstract dispose()

abstract dispose(): void

Dispose of the underlying resources used by this object.

Returns

void

Implementation of

quickjs-emscripten.Disposable.dispose

Source

packages/quickjs-emscripten-core/src/lifetime.ts:43


Generated using typedoc-plugin-markdown and TypeDoc