Table of Contents

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 int

The event integer id

result string

The string serialized completion result

orchestrationStatus OrchestrationStatus

The orchestration status

Properties

EventType

Gets the event type

public override EventType EventType { get; }

Property Value

EventType

OrchestrationStatus

Gets the history events orchestration status

[DataMember]
public OrchestrationStatus OrchestrationStatus { get; }

Property Value

OrchestrationStatus

Result

Gets the serialized completion result

[DataMember]
public string Result { get; }

Property Value

string