import { LazyPromise, retryMiddleware } from "@daiso-tech/core/async";
const promise = new LazyPromise(async () => {
console.log("I am lazy");
},
// You can also pass in one AsyncMiddleware or multiple (as an Array).
retry()
);
// "I am lazy" will only logged when awaited or then method i called.
await promise;
You can pass sync or async Invokable
.
The defer
method executes the LazyPromise
without awaiting it.
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));
The pipe
method returns a new LazyPromise
instance with the additional middlewares
applied.
The pipeWhen
method conditionally applies additional middlewares
, returning a new LazyPromise
instance only if the specified condition is met.
Attaches callbacks for the resolution and/or rejection of the Promise.
A Promise for the completion of which ever callback is executed.
Static
allThe all
method works similarly to Promise.all | Promise.all
with the key distinction that it operates lazily.
Static
allThe allSettled
method works similarly to Promise.allSettled | Promise.allSettled
with the key distinction that it operates lazily.
Static
anyThe any
method works similarly to Promise.any | Promise.any
with the key distinction that it operates lazily.
Static
delayThe delay
method creates a LazyPromise
that will be fulfilled after given time
.
Static
fromThe fromCallback
is convience method used for wrapping Node js callback functions with a LazyPromise
.
import { LazyPromise } from "@daiso-tech/core/async";
import { readFile } from "node:fs";
const lazyPromise = LazyPromise.fromCallback<Buffer>((resolve, reject) => {
readFile("FILE_PATH", (err, data) => {
if (err !== null) {
reject(err);
return;
}
resolve(data);
});
});
const file = await lazyPromise;
console.log(file);
Static
raceThe race
method works similarly to Promise.race | Promise.race
with the key distinction that it operates lazily.
Static
wrapThe wrapFn
is convience method used for wrapping async Invokable
with a LazyPromise
.
The
LazyPromise
class is used for creating lazy PromiseLike |PromiseLike
object that will only execute when awaited or whenthen
method is called. Note the class is immutable.IMPORT_PATH:
"@daiso-tech/core/async"