Table of Contents

Class NexusOperationOptions

Namespace
Temporalio.Workflows
Assembly
Temporalio.dll

Options for starting a Nexus operation.

public class NexusOperationOptions : ICloneable
Inheritance
NexusOperationOptions
Implements
Inherited Members

Remarks

WARNING: Nexus support is experimental.

Properties

CancellationToken

Gets or sets the cancellation token. If unset, defaults to the workflow cancellation token.

public CancellationToken? CancellationToken { get; set; }

Property Value

CancellationToken?

OperationName

Gets or sets the operation name.

public string? OperationName { get; set; }

Property Value

string

ScheduleToCloseTimeout

Gets or sets the schedule to close timeout.

public TimeSpan? ScheduleToCloseTimeout { get; set; }

Property Value

TimeSpan?

Summary

Gets or sets the summary.

public string? Summary { get; set; }

Property Value

string

Methods

Clone()

Create a shallow copy of these options.

public virtual object Clone()

Returns

object

A shallow copy of these options.