Package: effect
Module: Cause
Represents parallel composition of two Causes.
Details
This interface captures failures that happen simultaneously. In scenarios with concurrency, more than one operation can fail in parallel. Instead of losing information, this structure stores both errors together.
See
parallel Combine two Causes in parallelisParallelType Check if a Cause is a ParallelSignature
export interface Parallel<out E> extends Cause.Variance<E>, Equal.Equal, Pipeable, Inspectable {
readonly _tag: "Parallel"
readonly left: Cause<E>
readonly right: Cause<E>
}
Since v2.0.0