Documents for @litert/utils-async
    Preparing search index...

    Interface IBackgroundRunnerOptions

    interface IBackgroundRunnerOptions {
        waitFn?: () => Promise<void>;
    }
    Index

    Properties

    Properties

    waitFn?: () => Promise<void>

    The wait function used by runLater method to wait before running the callbacks.

    Feel free to replace it with any other similar function that returns a Promise and waits for a while.