Table of Contents

Class SubOrchestrationInstanceCompletedEvent

Namespace
DurableTask.Core.History
Assembly
DurableTask.Core.dll

A history event for sub orchestration instance completion

[DataContract]
public class SubOrchestrationInstanceCompletedEvent : HistoryEvent, IExtensibleDataObject
Inheritance
SubOrchestrationInstanceCompletedEvent
Implements
IExtensibleDataObject
Inherited Members

Constructors

SubOrchestrationInstanceCompletedEvent(int, int, string)

Create a new SubOrchestrationInstanceCompletedEvent with the supplied params

public SubOrchestrationInstanceCompletedEvent(int eventId, int taskScheduledId, string result)

Parameters

eventId int

The event id of the history event

taskScheduledId int

The scheduled parent instance event id

result string

The serialized result

Properties

EventType

Gets the event type

public override EventType EventType { get; }

Property Value

EventType

Result

Get the serialized result

[DataMember]
public string Result { get; }

Property Value

string

TaskScheduledId

Gets the scheduled parent instance event id

[DataMember]
public int TaskScheduledId { get; }

Property Value

int