HistoryEvent Class

Used to communicate state relevant information from the durable extension to the client.

Inheritance
builtins.object
HistoryEvent

Constructor

HistoryEvent(EventType: azure.durable_functions.models.history.HistoryEventType.HistoryEventType, EventId: int, IsPlayed: bool, Timestamp: str, **kwargs)

Parameters

EventType
EventId
IsPlayed
Timestamp

Attributes

event_id

Get the event ID property.

Returns

The value that represents the event sequence

Return type

int

event_type

Get the history event type property.

Returns

The type of history event

Return type

is_played

Get the is played property.

Returns

Value indicating whether the event has been played

Return type

is_processed

Get the is process property.

Returns

Value indicating whether the orchestrator has processed the event

Return type

timestamp

Get the timestamp property.

Returns

Value indicating the the time the event occurred

Return type