Combines two effects so that will be run in parallel.
Combines two effects so that will be run in parallel.
Combines another effect with this one, to be run before this effect.
Combines another effect with this one, to be run before this effect.
Combines another effect with this one, to be run after this effect.
Combines another effect with this one, to be run after this effect.
Delays the execution of this effect by duration delay
Delays the execution of this effect by duration delay
Creates a new effect by applying a function to the successful result of this effect, and returns the result of the function as the new future.
Creates a new effect by applying a function to the successful result of this effect, and returns the result of the function as the new future. If this effect is completed with an exception then the new effect will also contain this exception.
Creates a new effect by applying a function to the successful result of this effect.
Creates a new effect by applying a function to the successful result of this effect. If this effect is completed with an exception then the new effect will also contain this exception.
Runs the effect and dispatches the result of the effect.
Returns the number of effects
Returns the number of effects
Runs the effect function and returns its value (a Future[AnyRef])
Wraps multiple
Effects
to be executed later. Effects are executed in parallel without any ordering.