Чтобы добавить перевод, откройте Pull Request по этой ссылке.
Отображается содержимое для языка по умолчанию.
import { withRegion } from "effector";
The method is based on the idea of region-based memory management (see Region-based memory management for reference).
Methods
withRegion(unit, callback)
The method allows to explicitly transfer ownership of all units (including links created with sample
, forward
, etc…) defined in the callback to unit
. As an implication, all the created links will be erased as soon as clearNode
is called on Unit.
Formulae
withRegion(unit: Unit<T> | Node, callback: () => void): void
Arguments
unit
: Unit | Node — which will serve as “local area” or “region” owning all the units created within the provided callback. Usually a node created by low levelcreateNode
method is optimal for this case.callback
:() => void
— The callback where all the relevant units should be defined.
Examples
import { createNode, createEvent, restore, withRegion, clearNode } from "effector";
const first = createEvent();
const second = createEvent();
const $store = restore(first, "");
const region = createNode();
withRegion(domain, () => {
// Following links created with `sample` are owned by the provided unit `domain`
// and will be disposed as soon as `clearNode` is called on `domain`.
sample({
clock: second,
target: first,
});
});
$store.watch(console.log);
first("hello");
second("world");
clearNode(region);
second("will not trigger updates of `$store`");
Документация на английском языке - самая актуальная, поскольку её пишет и обновляет команда effector. Перевод документации на другие языки осуществляется сообществом по мере наличия сил и желания.
Помните, что переведенные статьи могут быть неактуальными, поэтому для получения наиболее точной и актуальной информации рекомендуем использовать оригинальную англоязычную версию документации.