Class NexusOperationHandleImpl<R>

    • Method Detail

      • getExecution

        public Promise<NexusOperationExecution> getExecution()
        Description copied from interface: NexusOperationHandle
        Returns a promise that is resolved when the operation reaches the STARTED state. For synchronous operations, this will be resolved at the same time as the promise from executeAsync. For asynchronous operations, this promises is resolved independently. If the operation is unsuccessful, this promise will throw the same exception as executeAsync. Use this method to extract the Operation ID of an asynchronous operation. OperationID will be empty for synchronous operations. If the workflow completes before this promise is ready then the operation might not start at all.
        Specified by:
        getExecution in interface NexusOperationHandle<R>
        Returns:
        promise that becomes ready once the operation has started.