@laserware/stasis
    Preparing search index...

    Function join

    • Creates an Effect description that instructs the middleware to wait for the result of a previously forked task.

      join will resolve to the same outcome of the joined task (success or error). If the joined task is cancelled, the cancellation will also propagate to the Saga executing the join effect. Similarly, any potential callers of those joiners will be cancelled as well.

      Parameters

      • task: Task

        A Task object returned by a previous fork

      Returns JoinEffect

    • Creates an Effect description that instructs the middleware to wait for the results of previously forked tasks.

      Parameters

      • tasks: Task<any>[]

        A Task is the object returned by a previous fork

      Returns JoinEffect