@infrasoftbe/vnv-sdk
    Preparing search index...

    Interface BatchFallbackSolver<ResultOnSuccess>

    interface BatchFallbackSolver<ResultOnSuccess = any> {
        _onerror: any;
        _onsuccess: any;
        _onwait: any;
        batch: Batch;
        query: BatchFallbackQuery<ResultOnSuccess>;
        get find(): | ((id: number) => Controller<any>)
        | ((id: number) => Controller<any>);
        get needs(): any[];
        get needsResult(): any;
        get pending(): any;
        get resolvable(): any;
        execute(controllerId: number): any;
        onError(controllerId: number): (value?: any) => void;
        onReject(controllerId: number): (value?: any) => void;
        onSucces(): (nextController: Promise<any>) => void;
        onWait(request: Controller<any>[]): () => void;
    }

    Type Parameters

    • ResultOnSuccess = any

    Hierarchy (View Summary)

    Index

    Properties

    _onerror: any = null
    _onsuccess: any = null
    _onwait: any = null
    batch: Batch

    Accessors

    Methods