nexus-rpc
    Preparing search index...

    Interface HandlerStartOperationResultAsyncExperimental

    A result that indicates that an operation has been accepted and will complete asynchronously.

    Use HandlerStartOperationResult.async to create an async result object. Do not implement this interface directly.

      return HandlerStartOperationResult.async("unique token");
    
    interface HandlerStartOperationResultAsync {
        isAsync: true;
        token: string;
    }
    Index

    Properties

    Properties

    isAsync: true

    Indicate whether the operation completed synchronously (false) or will complete asynchronously (true).

    token: string

    A token to identify the operation in followup handler methods such as OperationHandler.getResult and OperationHandler.cancel.