Class WorkflowSignalDefinition
- Namespace
- Temporalio.Workflows
- Assembly
- Temporalio.dll
Definition of a workflow signal.
public class WorkflowSignalDefinition
- Inheritance
-
WorkflowSignalDefinition
- Inherited Members
Properties
Dynamic
Gets a value indicating whether the signal is dynamic.
public bool Dynamic { get; }
Property Value
Name
Gets the signal name. This is null if the signal is dynamic.
public string? Name { get; }
Property Value
Methods
CreateWithoutAttribute(string?, Delegate, HandlerUnfinishedPolicy)
Creates a signal definition from an explicit name and method. Most users should use FromMethod(MethodInfo) with attributes instead.
public static WorkflowSignalDefinition CreateWithoutAttribute(string? name, Delegate del, HandlerUnfinishedPolicy unfinishedPolicy = HandlerUnfinishedPolicy.WarnAndAbandon)
Parameters
name
stringSignal name. Null for dynamic signal.
del
DelegateSignal delegate.
unfinishedPolicy
HandlerUnfinishedPolicyActions taken if a workflow exits with a running instance of this handler.
Returns
- WorkflowSignalDefinition
Signal definition.
FromMethod(MethodInfo)
Get a signal definition from a method or fail. The result is cached.
public static WorkflowSignalDefinition FromMethod(MethodInfo method)
Parameters
method
MethodInfoSignal method.
Returns
- WorkflowSignalDefinition
Signal definition.