ChemPal Documentation - v0.0.13-beta.5
    Preparing search index...

    Interface SupplierExecutionError<P>

    Error captured during parallel supplier execution in SupplierFactory.executeAll.

    interface SupplierExecutionError<P> {
        error: unknown;
        supplier: SupplierBase<unknown, P>;
    }

    Type Parameters

    • P

      The product type produced by the supplier

    Index

    Properties

    Properties

    error: unknown

    The error thrown during execution

    supplier: SupplierBase<unknown, P>

    The supplier instance that failed