Table of Contents

Class NexusOperationListPage

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Result type of paginated Nexus operation listing.

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

Remarks

WARNING: Standalone Nexus operations are experimental.

Constructors

NexusOperationListPage(IReadOnlyCollection<NexusOperationExecution>, byte[]?)

Result type of paginated Nexus operation listing.

public NexusOperationListPage(IReadOnlyCollection<NexusOperationExecution> Operations, byte[]? NextPageToken)

Parameters

Operations IReadOnlyCollection<NexusOperationExecution>

A page from the list of operations matching the query.

NextPageToken byte[]

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

Remarks

WARNING: Standalone Nexus operations are experimental.

Properties

NextPageToken

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

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

Property Value

byte[]

Operations

A page from the list of operations matching the query.

public IReadOnlyCollection<NexusOperationExecution> Operations { get; init; }

Property Value

IReadOnlyCollection<NexusOperationExecution>