Class DurableExecutionPendingSignal
Namespace: Cephalon.Abstractions.Execution
Assembly: Cephalon.Abstractions.dll
Describes one durable-execution signal that is currently pending for a workflow stream.
public sealed class DurableExecutionPendingSignalInheritance
Section titled “Inheritance”object ← DurableExecutionPendingSignal
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”DurableExecutionPendingSignal(string, string?, string?, string?, IReadOnlyDictionary<string, string>?)
Section titled “ DurableExecutionPendingSignal(string, string?, string?, string?, IReadOnlyDictionary<string, string>?)”Initializes a new instance of the
public DurableExecutionPendingSignal(string id, string? displayName = null, string? description = null, string? payloadType = null, IReadOnlyDictionary<string, string>? metadata = null)Parameters
Section titled “Parameters”id string
The stable signal identifier within the durable workflow.
displayName string?
The operator-facing signal name.
description string?
A human-readable description of why the signal is awaited.
payloadType string?
The expected payload type name for the awaited signal when one is known.
metadata IReadOnlyDictionary<string, string>?
Additional operator-facing metadata describing the signal.
Properties
Section titled “Properties”Description
Section titled “ Description”Gets the human-readable signal description when one was supplied.
public string? Description { get; }Property Value
Section titled “Property Value”DisplayName
Section titled “ DisplayName”Gets the operator-facing signal name.
public string DisplayName { get; }Property Value
Section titled “Property Value”Gets the stable signal identifier within the durable workflow.
public string Id { get; }Property Value
Section titled “Property Value”Metadata
Section titled “ Metadata”Gets additional operator-facing metadata describing the signal.
public IReadOnlyDictionary<string, string> Metadata { get; }Property Value
Section titled “Property Value”IReadOnlyDictionary<string, string>
PayloadType
Section titled “ PayloadType”Gets the expected payload type name when the awaited signal declares one.
public string? PayloadType { get; }