Перейти к основному содержимому

allSettled

allSettled<T>(unit: Event<T>, {scope: Scope, params?: T}): Promise<void>
allSettled<T>(unit: Effect<T, Done, Fail>, {scope: Scope, params?: T}): Promise<
| {status: 'done'; value: Done}
| {status: 'fail'; value: Fail}
>

Call provided unit in scope and wait for finishing all the triggered effects.

Arguments

  1. unit: Event or Effect to be called
  2. scope: Scope
  3. params: params passed to unit
note

Return value for effect is supported since effector 21.4.0

Последнее обновление