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