class StatelyDB::CoreClient

def continue_list(token)

Returns:
  • (Array, StatelyDB::Token) - the list of Items and the token

Parameters:
  • token (StatelyDB::Token) -- the token to continue from
def continue_list(token)
  req = Stately::Db::ContinueListRequest.new(
    token_data: token.token_data,
    schema_id: @schema::SCHEMA_ID,
    schema_version_id: @schema::SCHEMA_VERSION_ID
  )
  resp = @stub.continue_list(req)
  process_list_response(resp)
end