quickjs-emscripten • quickjs-emscripten-core • Readme | Exports
quickjs-emscripten / quickjs-emscripten-core / Scope
Scope helps reduce the burden of manually tracking and disposing of Lifetimes. See withScope. and withScopeAsync.
new Scope():
Scope
quickjs-emscripten-core.UsingDisposable.constructor
get
alive():boolean
boolean
true if the object is alive
false after the object has been disposed
packages/quickjs-emscripten-core/src/lifetime.ts:333
[dispose]():
void
Just calls the standard .dispose() method of this class.
void
quickjs-emscripten-core.Disposable.[dispose]
quickjs-emscripten-core.UsingDisposable.[dispose]
packages/quickjs-emscripten-core/src/lifetime.ts:47
dispose():
void
Dispose of the underlying resources used by this object.
void
quickjs-emscripten-core.Disposable.dispose
quickjs-emscripten-core.UsingDisposable.dispose
packages/quickjs-emscripten-core/src/lifetime.ts:337
manage<
T
>(lifetime
):T
Track lifetime
so that it is disposed when this scope is disposed.
• T extends Disposable
• lifetime: T
T
packages/quickjs-emscripten-core/src/lifetime.ts:328
static
withScope<R
>(block
):R
Run block
with a new Scope instance that will be disposed after the block returns.
Inside block
, call scope.manage
on each lifetime you create to have the lifetime
automatically disposed after the block returns.
• R
• block: (scope
) => R
R
Do not use with async functions. Instead, use withScopeAsync.
packages/quickjs-emscripten-core/src/lifetime.ts:273
static
withScopeAsync<R
>(block
):Promise
<R
>
Run block
with a new Scope instance that will be disposed after the
block's returned promise settles. Inside block
, call scope.manage
on each
lifetime you create to have the lifetime automatically disposed after the
block returns.
• R
• block: (scope
) => Promise
<R
>
Promise
<R
>
packages/quickjs-emscripten-core/src/lifetime.ts:310
static
withScopeMaybeAsync<Return
,This
,Yielded
>(_this
,block
):Return
|Promise
<Return
>
• Return
• This
• Yielded
• _this: This
• block: MaybeAsyncBlock
<Return
, This
, Yielded
, [Scope
]>
Return
| Promise
<Return
>
packages/quickjs-emscripten-core/src/lifetime.ts:286
Generated using typedoc-plugin-markdown and TypeDoc