nexus-rpc
    Preparing search index...

    Interface HandlerStartOperationResultSync<T>Experimental

    A result that indicates that an operation completed successfully.

    Use HandlerStartOperationResult.sync to create a sync result object. Do not implement this interface directly.

      return HandlerStartOperationResult.sync(42);
    
    interface HandlerStartOperationResultSync<T = unknown> {
        isAsync: false;
        value: T;
    }

    Type Parameters

    • T = unknown
    Index

    Properties

    Properties

    isAsync: false

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

    value: T

    The return value of the operation.