@laserware/stasis
    Preparing search index...

    Function put

    • Creates an Effect description that instructs the middleware to dispatch an action to the Store. This effect is non-blocking, any errors that are thrown downstream (e.g. in a reducer) will bubble back into the saga.

      Type Parameters

      • A extends Action

      Returns PutEffect<A>

    • Creates an Effect description that instructs the middleware to dispatch an action to the Store. This effect is non-blocking, any errors that are thrown downstream (e.g. in a reducer) will bubble back into the saga.

      Type Parameters

      • ReturnType = any
      • State = any
      • ExtraThunkArg = any
      • BasicAction extends Action = Action

      Returns PutEffect<BasicAction>

    • Creates an Effect description that instructs the middleware to put an action into the provided channel.

      This effect is blocking if the put is not buffered but immediately consumed by takers. If an error is thrown in any of these takers it will bubble back into the saga.

      Type Parameters

      • T

      Parameters

      Returns ChannelPutEffect<T>