Table of Contents

Class NexusOperationExecutionCount

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Representation of a count from a count Nexus operations call.

public class NexusOperationExecutionCount
Inheritance
NexusOperationExecutionCount
Inherited Members

Remarks

WARNING: Standalone Nexus operations are experimental.

Constructors

NexusOperationExecutionCount(CountNexusOperationExecutionsResponse)

Initializes a new instance of the NexusOperationExecutionCount class.

protected NexusOperationExecutionCount(CountNexusOperationExecutionsResponse raw)

Parameters

raw CountNexusOperationExecutionsResponse

Raw proto.

Remarks

WARNING: This constructor may be mutated in backwards incompatible ways.

Properties

Count

Gets the approximate number of operations matching the original query. If the query had a group-by clause, this is simply the sum of all the counts in Groups.

public long Count { get; }

Property Value

long

Groups

Gets the groups if the query had a group-by clause, or empty if not.

public IReadOnlyCollection<NexusOperationExecutionCount.AggregationGroup> Groups { get; }

Property Value

IReadOnlyCollection<NexusOperationExecutionCount.AggregationGroup>