GPUdb C++ API
Version 7.2.2.4
|
A set of results returned by GPUdb::getRecordsFromCollection. More...
#include <gpudb/protocol/get_records_from_collection.h>
Public Member Functions | |
GetRecordsFromCollectionResponse () | |
Constructs a GetRecordsFromCollectionResponse object with default parameters. More... | |
Public Attributes | |
std::string | tableName |
Value of tableName. More... | |
std::vector< std::string > | typeNames |
The type IDs of the corresponding records in data or recordsJson. More... | |
std::vector< T > | data |
If the encoding parameter of the request was 'binary' then this list contains the binary encoded records retrieved from the table/collection. More... | |
std::vector< std::string > | recordIds |
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID for each object. More... | |
std::map< std::string, std::string > | info |
Additional information. More... | |
A set of results returned by GPUdb::getRecordsFromCollection.
T | The type of object being processed. |
Definition at line 479 of file get_records_from_collection.h.
|
inline |
Constructs a GetRecordsFromCollectionResponse object with default parameters.
Definition at line 485 of file get_records_from_collection.h.
std::vector<T> gpudb::GetRecordsFromCollectionResponse< T >::data |
If the encoding parameter of the request was 'binary' then this list contains the binary encoded records retrieved from the table/collection.
Otherwise, empty list.
Definition at line 514 of file get_records_from_collection.h.
std::map<std::string, std::string> gpudb::GetRecordsFromCollectionResponse< T >::info |
Additional information.
The default value is an empty map.
Definition at line 543 of file get_records_from_collection.h.
std::vector<std::string> gpudb::GetRecordsFromCollectionResponse< T >::recordIds |
If the 'return_record_ids' option of the request was 'true', then this list contains the internal ID for each object.
Otherwise it will be empty.
Definition at line 521 of file get_records_from_collection.h.
std::string gpudb::GetRecordsFromCollectionResponse< T >::tableName |
Value of tableName.
Definition at line 498 of file get_records_from_collection.h.
std::vector<std::string> gpudb::GetRecordsFromCollectionResponse< T >::typeNames |
The type IDs of the corresponding records in data or recordsJson.
This is useful when tableName is a heterogeneous collection (collections containing tables of different types).
Definition at line 507 of file get_records_from_collection.h.