ข้ามไปยังเนื้อหา

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 DurableExecutionPendingSignal

objectDurableExecutionPendingSignal

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

DurableExecutionPendingSignal(string, string?, string?, string?, IReadOnlyDictionary<string, string>?)

Section titled “ DurableExecutionPendingSignal(string, string?, string?, string?, IReadOnlyDictionary<string, string>?)”

Initializes a new instance of the class.

public DurableExecutionPendingSignal(string id, string? displayName = null, string? description = null, string? payloadType = null, IReadOnlyDictionary<string, string>? metadata = null)

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.

Gets the human-readable signal description when one was supplied.

public string? Description { get; }

string?

Gets the operator-facing signal name.

public string DisplayName { get; }

string

Gets the stable signal identifier within the durable workflow.

public string Id { get; }

string

Gets additional operator-facing metadata describing the signal.

public IReadOnlyDictionary<string, string> Metadata { get; }

IReadOnlyDictionary<string, string>

Gets the expected payload type name when the awaited signal declares one.

public string? PayloadType { get; }

string?