Class ExecutionCompletedEvent
- Namespace
- DurableTask.Core.History
- Assembly
- DurableTask.Core.dll
A history event for execution completed
[DataContract]
public class ExecutionCompletedEvent : HistoryEvent, IExtensibleDataObject
- Inheritance
-
ExecutionCompletedEvent
- Implements
-
IExtensibleDataObject
- Derived
- Inherited Members
Constructors
ExecutionCompletedEvent(int, string, OrchestrationStatus)
Creates a new ExecutionCompletedEvent with the supplied parameters
public ExecutionCompletedEvent(int eventId, string result, OrchestrationStatus orchestrationStatus)
Parameters
eventId
intThe event integer id
result
stringThe string serialized completion result
orchestrationStatus
OrchestrationStatusThe orchestration status
Properties
EventType
Gets the event type
public override EventType EventType { get; }
Property Value
OrchestrationStatus
Gets the history events orchestration status
[DataMember]
public OrchestrationStatus OrchestrationStatus { get; }
Property Value
Result
Gets the serialized completion result
[DataMember]
public string Result { get; }