Class: Temporalio::Client::ListWorkflowPage

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

Overview

A page of workflow executions returned by #list_workflow_page.

Instance Attribute Summary collapse

Instance Attribute Details

#executionsArray<WorkflowExecution>

Returns List of workflow executions in this page.

Returns:



53
54
55
# File 'lib/temporalio/client.rb', line 53

def executions
  @executions
end

#next_page_tokenString?

Returns Token for the next page of results. nil if there are no more results.

Returns:

  • (String, nil)

    Token for the next page of results. nil if there are no more results.



53
54
55
# File 'lib/temporalio/client.rb', line 53

def next_page_token
  @next_page_token
end