Table of Contents

Class NexusOperationInfo

Namespace
Temporalio.Nexus
Assembly
Temporalio.dll

Temporal-specific Nexus operation information.

public record NexusOperationInfo : IEquatable<NexusOperationInfo>
Inheritance
NexusOperationInfo
Implements
Inherited Members

Remarks

WARNING: Nexus support is experimental.

Constructors

NexusOperationInfo(string, string, string)

Temporal-specific Nexus operation information.

public NexusOperationInfo(string Namespace, string TaskQueue, string Endpoint)

Parameters

Namespace string

Current namespace.

TaskQueue string

Current task queue.

Endpoint string

Endpoint this request was addressed to.

Remarks

WARNING: Nexus support is experimental.

Properties

Endpoint

Endpoint this request was addressed to.

public string Endpoint { get; init; }

Property Value

string

Namespace

Current namespace.

public string Namespace { get; init; }

Property Value

string

TaskQueue

Current task queue.

public string TaskQueue { get; init; }

Property Value

string