Table of Contents

Class ActivityListPage

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Result type of paginated activity listing.

public record ActivityListPage : IEquatable<ActivityListPage>
Inheritance
ActivityListPage
Implements
Inherited Members

Remarks

WARNING: Standalone activities are experimental.

Constructors

ActivityListPage(IReadOnlyCollection<ActivityExecution>, byte[]?)

Result type of paginated activity listing.

public ActivityListPage(IReadOnlyCollection<ActivityExecution> Activities, byte[]? NextPageToken)

Parameters

Activities IReadOnlyCollection<ActivityExecution>

A page from the list of activities matching the query.

NextPageToken byte[]

Token to pass to retrieve the next page. Null if there are no more pages.

Remarks

WARNING: Standalone activities are experimental.

Properties

Activities

A page from the list of activities matching the query.

public IReadOnlyCollection<ActivityExecution> Activities { get; init; }

Property Value

IReadOnlyCollection<ActivityExecution>

NextPageToken

Token to pass to retrieve the next page. Null if there are no more pages.

public byte[]? NextPageToken { get; init; }

Property Value

byte[]