Class LazyPromise<TValue>

The LazyPromise class is used for creating lazy PromiseLike | PromiseLike object that will only execute when awaited or when then method is called. Note the class is immutable.

IMPORT_PATH: "@daiso-tech/core/async"

Type Parameters

  • TValue

Implements

Constructors

Methods

  • The defer method executes the LazyPromise without awaiting it.

    Returns void

    import { LazyPromise } from "@daiso-tech/core/async";
    import { TimeSpan } from "@daiso-tech/core/utilities";

    const promise =
    new LazyPromise(async () => {
    await LazyPromise.delay(TimeSpan.fromSeconds(1));
    // Will be loged after one second
    console.log("Done !");
    });

    promise.defer();

    // Will be logged immediately
    console.log("Hello");
    await LazyPromise.delay(TimeSpan.fromSeconds(2));