Table of Contents

Class ExecuteNexusOperationStartInput

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

Remarks

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

Constructors

ExecuteNexusOperationStartInput(OperationStartContext, object?)

public ExecuteNexusOperationStartInput(OperationStartContext Context, object? Input)

Parameters

Context OperationStartContext

Nexus context.

Input object

Operation input.

Remarks

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

Properties

Context

Nexus context.

public OperationStartContext Context { get; init; }

Property Value

OperationStartContext

Input

Operation input.

public object? Input { get; init; }

Property Value

object