Logos DX
    Preparing search index...

    Interface InflightEntry<T>

    In-flight request entry.

    interface InflightEntry<T> {
        promise: Promise<T>;
        waitingCount: number;
    }

    Type Parameters

    • T

      The type of the promised value

    Index

    Properties

    promise: Promise<T>

    The shared promise for this request

    waitingCount: number

    Number of callers currently waiting on this promise