Table of Contents

Class NexusOperationAlreadyStartedException

Namespace
Temporalio.Exceptions
Assembly
Temporalio.dll

Exception thrown by client when attempting to start a standalone Nexus operation that was already started.

public class NexusOperationAlreadyStartedException : FailureException, ISerializable
Inheritance
NexusOperationAlreadyStartedException
Implements
Inherited Members

Remarks

WARNING: Standalone Nexus operations are experimental.

Constructors

NexusOperationAlreadyStartedException(string, string, string?)

Initializes a new instance of the NexusOperationAlreadyStartedException class.

public NexusOperationAlreadyStartedException(string message, string operationId, string? runId)

Parameters

message string

Error message.

operationId string

See OperationId.

runId string

See RunId.

Properties

OperationId

Gets the operation ID that was already started.

public string OperationId { get; }

Property Value

string

RunId

Gets the run ID of the already-started operation, if available.

public string? RunId { get; }

Property Value

string