Table of Contents

Class CreateContinueAsNewExceptionInput

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

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Constructors

CreateContinueAsNewExceptionInput(string, IReadOnlyCollection<object?>, ContinueAsNewOptions?, IDictionary<string, Payload>?)

public CreateContinueAsNewExceptionInput(string Workflow, IReadOnlyCollection<object?> Args, ContinueAsNewOptions? Options, IDictionary<string, Payload>? Headers)

Parameters

Workflow string

Workflow to continue.

Args IReadOnlyCollection<object>

Arguments for the workflow.

Options ContinueAsNewOptions

Options passed in to continue as new.

Headers IDictionary<string, Payload>

Headers to include.

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Properties

Args

Arguments for the workflow.

public IReadOnlyCollection<object?> Args { get; init; }

Property Value

IReadOnlyCollection<object>

Headers

Headers to include.

public IDictionary<string, Payload>? Headers { get; init; }

Property Value

IDictionary<string, Payload>

Options

Options passed in to continue as new.

public ContinueAsNewOptions? Options { get; init; }

Property Value

ContinueAsNewOptions

Workflow

Workflow to continue.

public string Workflow { get; init; }

Property Value

string