7 using System.Collections.Generic;
50 public const string BINARY =
"binary";
51 public const string JSON =
"json";
98 public const string RETURN_RECORD_IDS =
"return_record_ids";
99 public const string TRUE =
"true";
100 public const string FALSE =
"false";
118 public long limit {
get;
set; } = 10000;
161 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
209 IDictionary<string, string>
options = null)
211 this.table_name = table_name ??
"";
277 IDictionary<string, string>
options = null)
279 this.table_name = table_name ??
"";
306 public IList<string> type_names {
get;
set; } =
new List<string>();
311 public IList<byte[]> records_binary {
get;
set; } =
new List<byte[]>();
316 public IList<string> records_json {
get;
set; } =
new List<string>();
321 public IList<string> record_ids {
get;
set; } =
new List<string>();
346 public IList<string> type_names {
get;
set; } =
new List<string>();
351 public IList<T> data {
get;
set; } =
new List<T>();
356 public IList<string> record_ids {
get;
set; } =
new List<string>();
GetRecordsFromCollectionRequest(string table_name, long? offset=null, long? limit=null, string encoding=null, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.
string encoding
Specifies the encoding for returned records; either 'binary' or 'json'.
IDictionary< string, string > options
RETURN_RECORD_IDS: If 'true' then return the internal record ID along with each returned record...
GetRecordsFromCollectionRequest()
Constructs a GetRecordsFromCollectionRequest object with default parameters.
Specifies the encoding for returned records; either 'binary' or 'json'.
string table_name
Name of the collection or table from which records are to be retrieved.
long offset
A positive integer indicating the number of initial results to skip (this can be useful for paging th...
GetRecordsFromCollectionRequest(string table_name, long? offset=null, long? limit=null, IDictionary< string, string > options=null)
Constructs a GetRecordsFromCollectionRequest object with the specified parameters.
A set of parameters for Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>).
RETURN_RECORD_IDS: If 'true' then return the internal record ID along with each returned record...
A set of results returned by Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>).
A set of results returned by Kinetica.getRecordsFromCollection<T>(string,long,long,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
long limit
A positive integer indicating the maximum number of results to be returned, or END_OF_SET (-9999) to ...