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
NamespacestringCurrent namespace.
TaskQueuestringCurrent task queue.
EndpointstringEndpoint 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
Namespace
Current namespace.
public string Namespace { get; init; }
Property Value
TaskQueue
Current task queue.
public string TaskQueue { get; init; }