Scope
Hierarchy
- Destroyable
- Scope
Index
Properties
add
Registers an unsubscribable resource which will be called when destroy()
is called
Type declaration
Registers an unsubscribable resource which will be called when
destroy()
is calledType parameters
Parameters
resource: T
Returns T
atom
Creates a new atom and registers it for later disposal
createScope
destroy
Destroys the scope
Type declaration
Destroys the scope
Returns void
effect
Creates a new effect and registers it for later disposal
onDestroy
Registers a callback or unsubscribable resource which will be called when destroy()
is called
Type declaration
Registers a callback or unsubscribable resource which will be called when
destroy()
is calledParameters
teardown: ScopeTeardown
Returns void
signal
Creates a new signal and registers it for later disposal
syncEffect
Creates a new sync effect and registers it for later disposal
A boundary for effects and business logic.
Scope
collects all subscriptions which are made by child entities and providesdestroy()
method to unsubscribe from them.