Class WorkflowHistoryEventPage
- Namespace
- Temporalio.Client.Interceptors
- Assembly
- Temporalio.dll
Page of workflow history events.
public record WorkflowHistoryEventPage : IEquatable<WorkflowHistoryEventPage>
- Inheritance
-
WorkflowHistoryEventPage
- Implements
- Inherited Members
Constructors
WorkflowHistoryEventPage(IReadOnlyCollection<HistoryEvent>, byte[]?)
Page of workflow history events.
public WorkflowHistoryEventPage(IReadOnlyCollection<HistoryEvent> Events, byte[]? NextPageToken)
Parameters
Events
IReadOnlyCollection<HistoryEvent>Collection of events.
NextPageToken
byte[]Token for getting the next page if any.
Properties
Events
Collection of events.
public IReadOnlyCollection<HistoryEvent> Events { get; init; }
Property Value
NextPageToken
Token for getting the next page if any.
public byte[]? NextPageToken { get; init; }
Property Value
- byte[]