if ctx is your context, then these function members are available under ctx.batch.
the purpose of these functions is to widthold any signals from firing until the batching is complete, and then all signals are fired together in one single propagation cycle.
this is useful in circumstances where you have a array or dictionary like signal which must undergo many mutations all at once.
// TODO-DOC: give an example
if
ctx
is your context, then these function members are available underctx.batch
.the purpose of these functions is to widthold any signals from firing until the batching is complete, and then all signals are fired together in one single propagation cycle.
this is useful in circumstances where you have a array or dictionary like signal which must undergo many mutations all at once. // TODO-DOC: give an example