Class SignalWithStartWorkflowResponse
- Namespace
- Temporalio.Workflows
- Assembly
- Temporalio.dll
Result of signaling a workflow and starting it if needed.
[TemporalTransferTypeConverter(typeof(SignalWithStartWorkflowResponse.TransferTypeConverter))]
public record SignalWithStartWorkflowResponse : IEquatable<SignalWithStartWorkflowResponse>
- Inheritance
-
SignalWithStartWorkflowResponse
- Implements
- Inherited Members
Remarks
WARNING: This API is experimental and may change in the future.
Properties
RunId
Run ID of the started workflow.
public string? RunId { get; init; }
Property Value
Started
Whether the workflow was started.
public bool? Started { get; init; }
Property Value
- bool?