Skip to main content

◆ getRecordsBySeries() [1/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > gpudb::GPUdb::getRecordsBySeries (const ::avro::ValidSchema &schema_,
const GetRecordsBySeriesRequest &request_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]schema_Avro schema object used for decoding returned objects.
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 33820 of file GPUdb.hpp.

◆ getRecordsBySeries() [2/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > & gpudb::GPUdb::getRecordsBySeries (const ::avro::ValidSchema &schema_,
const GetRecordsBySeriesRequest &request_,
GetRecordsBySeriesResponse< TResponse > &response_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]schema_Avro schema object used for decoding returned objects.
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 33927 of file GPUdb.hpp.

◆ getRecordsBySeries() [3/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > gpudb::GPUdb::getRecordsBySeries (const ::avro::ValidSchema &schema_,
const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]schema_Avro schema object used for decoding returned objects.
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
Returns
Response object containing the result of the operation.

Definition at line 34052 of file GPUdb.hpp.

◆ getRecordsBySeries() [4/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > & gpudb::GPUdb::getRecordsBySeries (const ::avro::ValidSchema &schema_,
const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options,
GetRecordsBySeriesResponse< TResponse > &response_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]schema_Avro schema object used for decoding returned objects.
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 34210 of file GPUdb.hpp.

◆ getRecordsBySeries() [5/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > gpudb::GPUdb::getRecordsBySeries (const GetRecordsBySeriesRequest &request_) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 33562 of file GPUdb.hpp.

◆ getRecordsBySeries() [6/20]

template<>
GetRecordsBySeriesResponse< boost::any > gpudb::GPUdb::getRecordsBySeries (const GetRecordsBySeriesRequest &request_) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

◆ getRecordsBySeries() [7/20]

template<>
GetRecordsBySeriesResponse< boost::any > gpudb::GPUdb::getRecordsBySeries (const GetRecordsBySeriesRequest &request_) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

◆ getRecordsBySeries() [8/20]

template<>
GetRecordsBySeriesResponse< boost::any > & gpudb::GPUdb::getRecordsBySeries (const GetRecordsBySeriesRequest &request_,
GetRecordsBySeriesResponse< boost::any > &response_ ) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

◆ getRecordsBySeries() [9/20]

template<>
GetRecordsBySeriesResponse< boost::any > & gpudb::GPUdb::getRecordsBySeries (const GetRecordsBySeriesRequest &request_,
GetRecordsBySeriesResponse< boost::any > &response_ ) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

◆ getRecordsBySeries() [10/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > & gpudb::GPUdb::getRecordsBySeries (const GetRecordsBySeriesRequest &request_,
GetRecordsBySeriesResponse< TResponse > &response_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 33614 of file GPUdb.hpp.

◆ getRecordsBySeries() [11/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > gpudb::GPUdb::getRecordsBySeries (const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
Returns
Response object containing the result of the operation.

Definition at line 33683 of file GPUdb.hpp.

◆ getRecordsBySeries() [12/20]

template<>
GetRecordsBySeriesResponse< boost::any > gpudb::GPUdb::getRecordsBySeries (const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options ) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
Returns
Response object containing the result of the operation.

◆ getRecordsBySeries() [13/20]

template<>
GetRecordsBySeriesResponse< boost::any > gpudb::GPUdb::getRecordsBySeries (const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options ) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
Returns
Response object containing the result of the operation.

◆ getRecordsBySeries() [14/20]

template<>
GetRecordsBySeriesResponse< boost::any > & gpudb::GPUdb::getRecordsBySeries (const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options,
GetRecordsBySeriesResponse< boost::any > &response_ ) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

◆ getRecordsBySeries() [15/20]

template<>
GetRecordsBySeriesResponse< boost::any > & gpudb::GPUdb::getRecordsBySeries (const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options,
GetRecordsBySeriesResponse< boost::any > &response_ ) const

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Parameters
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

◆ getRecordsBySeries() [16/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > & gpudb::GPUdb::getRecordsBySeries (const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options,
GetRecordsBySeriesResponse< TResponse > &response_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 33761 of file GPUdb.hpp.

◆ getRecordsBySeries() [17/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > gpudb::GPUdb::getRecordsBySeries (const Type &type_,
const GetRecordsBySeriesRequest &request_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]type_Type object used for decoding returned objects.
[in]request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 33872 of file GPUdb.hpp.

◆ getRecordsBySeries() [18/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > & gpudb::GPUdb::getRecordsBySeries (const Type &type_,
const GetRecordsBySeriesRequest &request_,
GetRecordsBySeriesResponse< TResponse > &response_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]type_Type object used for decoding returned objects.
[in]request_Request object containing the parameters for the operation.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 33981 of file GPUdb.hpp.

◆ getRecordsBySeries() [19/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > gpudb::GPUdb::getRecordsBySeries (const Type &type_,
const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]type_Type object used for decoding returned objects.
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
Returns
Response object containing the result of the operation.

Definition at line 34130 of file GPUdb.hpp.

◆ getRecordsBySeries() [20/20]

template<typename TResponse>
GetRecordsBySeriesResponse< TResponse > & gpudb::GPUdb::getRecordsBySeries (const Type &type_,
const std::string &tableName,
const std::string &worldTableName,
const int32_toffset,
const int32_tlimit,
const std::map< std::string, std::string > &options,
GetRecordsBySeriesResponse< TResponse > &response_ ) const
inline

Retrieves the complete series/track records from the given worldTableName based on the partial track information contained in the tableName.

This operation supports paging through the data via the offset and limit parameters.

In contrast to getRecords this returns records grouped by series/track. So if offset is 0 and limit is 5 this operation would return the first 5 series/tracks in tableName. Each series/track will be returned sorted by their TIMESTAMP column.

Template Parameters
TResponseThe type of object being retrieved.
Parameters
[in]type_Type object used for decoding returned objects.
[in]tableNameName of the table or view for which series/tracks will be fetched, in [schema_name.]table_name format, using standard name resolution rules.
[in]worldTableNameName of the table containing the complete series/track information to be returned for the tracks present in the tableName, in [schema_name.]table_name format, using standard name resolution rules. Typically this is used when retrieving series/tracks from a view (which contains partial series/tracks) but the user wants to retrieve the entire original series/tracks. Can be blank.
[in]offsetA positive integer indicating the number of initial series/tracks to skip (useful for paging through the results). The default value is 0. The minimum allowed value is 0. The maximum allowed value is MAX_INT.
[in]limitA positive integer indicating the maximum number of series/tracks to be returned. Or END_OF_SET (-9999) to indicate that the max number of results should be returned. The default value is 250.
[in]optionsOptional parameters. The default value is an empty map.
[out]response_Response object containing the results of the operation.
Returns
Response object containing the result of the operation (initially passed in by reference).

Definition at line 34290 of file GPUdb.hpp.