IPromise interface allows to run callback written in JS from C++. For using this interface please use its implementation from OccViewer.IPromise.implement.

interface IPromise {
    implement(arg: any): IPromise;
    resolve(): void;
    resolve(theErr: string): string;
}

Methods

  • Create IPromise wrapper from given object with resolve/reject functions.

    Parameters

    • arg: any

    Returns IPromise

  • Custom callback function.

    Returns void

  • Custom on error callback function.

    Parameters

    • theErr: string

    Returns string