Table of Contents

Class StartChildWorkflowInput

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

Remarks

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

Constructors

StartChildWorkflowInput(string, IReadOnlyCollection<object?>, ChildWorkflowOptions, IDictionary<string, Payload>?)

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

Parameters

Workflow string

Workflow type name.

Args IReadOnlyCollection<object>

Workflow args.

Options ChildWorkflowOptions

Workflow options.

Headers IDictionary<string, Payload>

Headers if any. These will be encoded using the codec before sent to the server.

Remarks

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

Properties

Args

Workflow args.

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

Property Value

IReadOnlyCollection<object>

Headers

Headers if any. These will be encoded using the codec before sent to the server.

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

Property Value

IDictionary<string, Payload>

Options

Workflow options.

public ChildWorkflowOptions Options { get; init; }

Property Value

ChildWorkflowOptions

Workflow

Workflow type name.

public string Workflow { get; init; }

Property Value

string