interface DeferredPromise<T> {
    [toStringTag]: string;
    always(callback: (() => void)): DeferredPromise<T>;
    catch<TResult>(onrejected?: null | ((reason: any) => TResult | PromiseLike<TResult>)): Promise<T | TResult>;
    done(callback: ((data: T) => void)): DeferredPromise<T>;
    fail(callback: ((exc: Error) => void)): DeferredPromise<T>;
    finally(onfinally?: null | (() => void)): Promise<T>;
    progress(callback: ((message: T, cancel: (() => void)) => void)): DeferredPromise<T>;
    then<TResult1, TResult2>(onfulfilled?: null | ((value: T) => TResult1 | PromiseLike<TResult1>), onrejected?: null | ((reason: any) => TResult2 | PromiseLike<TResult2>)): Promise<TResult1 | TResult2>;
}

Type Parameters

  • T

Hierarchy-Diagram

UML class diagram of DeferredPromise
Legend
icon for an interface in the UML class diagram interface
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

[toStringTag]: string

Methods

  • Parameters

    • callback: (() => void)
        • (): void
        • Returns void

    Returns DeferredPromise<T>

  • Attaches a callback for only the rejection of the Promise.

    Type Parameters

    • TResult = never

    Parameters

    • Optional onrejected: null | ((reason: any) => TResult | PromiseLike<TResult>)

      The callback to execute when the Promise is rejected.

    Returns Promise<T | TResult>

    A Promise for the completion of the callback.

  • Parameters

    • callback: ((data: T) => void)
        • (data: T): void
        • Parameters

          • data: T

          Returns void

    Returns DeferredPromise<T>

  • Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The resolved value cannot be modified from the callback.

    Parameters

    • Optional onfinally: null | (() => void)

      The callback to execute when the Promise is settled (fulfilled or rejected).

    Returns Promise<T>

    A Promise for the completion of the callback.

  • Parameters

    • callback: ((message: T, cancel: (() => void)) => void)
        • (message: T, cancel: (() => void)): void
        • Parameters

          • message: T
          • cancel: (() => void)
              • (): void
              • Returns void

          Returns void

    Returns DeferredPromise<T>