Class DurableExecutionPendingTimer
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Abstractions.Execution
Assembly: Cephalon.Abstractions.dll
Describes one durable-execution timer that is currently pending for a workflow stream.
public sealed class DurableExecutionPendingTimerInheritance
Section titled “Inheritance”object ← DurableExecutionPendingTimer
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”DurableExecutionPendingTimer(string, DateTimeOffset, string?, string?, IReadOnlyDictionary<string, string>?)
Section titled “ DurableExecutionPendingTimer(string, DateTimeOffset, string?, string?, IReadOnlyDictionary<string, string>?)”Initializes a new instance of the
public DurableExecutionPendingTimer(string id, DateTimeOffset dueAtUtc, string? displayName = null, string? description = null, IReadOnlyDictionary<string, string>? metadata = null)Parameters
Section titled “Parameters”id string
The stable timer identifier within the durable workflow.
dueAtUtc DateTimeOffset
The UTC timestamp when the timer is next due.
displayName string?
The operator-facing timer name.
description string?
A human-readable description of why the timer is pending.
metadata IReadOnlyDictionary<string, string>?
Additional operator-facing metadata describing the timer.
Properties
Section titled “Properties”Description
Section titled “ Description”Gets the human-readable timer description when one was supplied.
public string? Description { get; }Property Value
Section titled “Property Value”DisplayName
Section titled “ DisplayName”Gets the operator-facing timer name.
public string DisplayName { get; }Property Value
Section titled “Property Value”DueAtUtc
Section titled “ DueAtUtc”Gets the UTC timestamp when the timer is next due.
public DateTimeOffset DueAtUtc { get; }Property Value
Section titled “Property Value”Gets the stable timer 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 timer.
public IReadOnlyDictionary<string, string> Metadata { get; }