Table of Contents

Class CancelNexusOperationInput

Namespace
Temporalio.Client.Interceptors
Assembly
Temporalio.dll
public record CancelNexusOperationInput : IEquatable<CancelNexusOperationInput>
Inheritance
CancelNexusOperationInput
Implements
Inherited Members

Remarks

WARNING: Standalone Nexus operations are experimental.

Constructors

CancelNexusOperationInput(string, string?, NexusOperationCancelOptions?)

public CancelNexusOperationInput(string Id, string? RunId, NexusOperationCancelOptions? Options)

Parameters

Id string

Operation ID.

RunId string

Operation run ID if any.

Options NexusOperationCancelOptions

Options passed in to cancel.

Remarks

WARNING: Standalone Nexus operations are experimental.

Properties

Id

Operation ID.

public string Id { get; init; }

Property Value

string

Options

Options passed in to cancel.

public NexusOperationCancelOptions? Options { get; init; }

Property Value

NexusOperationCancelOptions

RunId

Operation run ID if any.

public string? RunId { get; init; }

Property Value

string