Class: Temporalio::Client::WorkflowExecutionCount::AggregationGroup

Inherits:
Object
  • Object
show all
Defined in:
lib/temporalio/client/workflow_execution_count.rb

Overview

Aggregation group if the workflow count query had a group-by clause.

Instance Attribute Summary collapse

Instance Attribute Details

#countInteger (readonly)

Returns Approximate number of workflows matching the original query for this group.

Returns:

  • (Integer)

    Approximate number of workflows matching the original query for this group.



23
24
25
# File 'lib/temporalio/client/workflow_execution_count.rb', line 23

def count
  @count
end

#group_valuesArray<Object> (readonly)

Returns Search attribute values for this group.

Returns:

  • (Array<Object>)

    Search attribute values for this group.



26
27
28
# File 'lib/temporalio/client/workflow_execution_count.rb', line 26

def group_values
  @group_values
end