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
stringWorkflow to continue.
Args
IReadOnlyCollection<object>Arguments for the workflow.
Options
ContinueAsNewOptionsOptions 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
Headers
Headers to include.
public IDictionary<string, Payload>? Headers { get; init; }
Property Value
Options
Options passed in to continue as new.
public ContinueAsNewOptions? Options { get; init; }
Property Value
Workflow
Workflow to continue.
public string Workflow { get; init; }