7 using System.Collections.Generic;
34 public const string BINARY =
"binary";
35 public const string JSON =
"json";
66 public int limit {
get;
set; } = 250;
82 public string encoding {
get;
set; } = Encoding.BINARY;
87 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
124 IDictionary<string, string>
options =
null)
179 IDictionary<string, string>
options =
null)
197 public IList<string>
table_names {
get;
set; } =
new List<string>();
201 public IList<string>
type_names {
get;
set; } =
new List<string>();
220 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
232 public IList<string>
table_names {
get;
set; } =
new List<string>();
236 public IList<string>
type_names {
get;
set; } =
new List<string>();
246 public IList<IList<T>>
data {
get;
set; } =
new List<IList<T>>();
249 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IList< string > type_schemas
The type schemas (one per series/track) of the returned series/tracks.
int offset
A positive integer indicating the number of initial series/tracks to skip (useful for paging through ...
string table_name
Name of the table or view for which series/tracks will be fetched, in [schema_name.
IList< IList< T > > data
If the encoding parameter of the request was 'binary' then this list-of-lists contains the binary enc...
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
IList< string > type_names
The type IDs (one per series/track) of the returned series/tracks.
IList< IList< byte[]> > list_records_binary
If the encoding parameter of the request was 'binary' then this list-of-lists contains the binary enc...
IDictionary< string, string > options
Optional parameters.
int limit
A positive integer indicating the maximum number of series/tracks to be returned.
IList< IList< string > > list_records_json
If the encoding parameter of the request was 'json' then this list-of-lists contains the JSON-encoded...
string world_table_name
Name of the table containing the complete series/track information to be returned for the tracks pres...
GetRecordsBySeriesRequest(string table_name, string world_table_name, int? offset=null, int? limit=null, IDictionary< string, string > options=null)
Constructs a GetRecordsBySeriesRequest object with the specified parameters.
IList< string > type_schemas
The type schemas (one per series/track) of the returned series/tracks.
GetRecordsBySeriesRequest(string table_name, string world_table_name, int? offset=null, int? limit=null, string encoding=null, IDictionary< string, string > options=null)
Constructs a GetRecordsBySeriesRequest object with the specified parameters.
A set of results returned by Kinetica.getRecordsBySeries.
IList< string > type_names
The type IDs (one per series/track) of the returned series/tracks.
GetRecordsBySeriesRequest()
Constructs a GetRecordsBySeriesRequest object with default parameters.
A set of results returned by Kinetica.getRecordsBySeries.
string encoding
Specifies the encoding for returned records; either BINARY or JSON.
A set of parameters for Kinetica.getRecordsBySeries.
A set of string constants for the parameter encoding.
IList< string > table_names
The table name (one per series/track) of the returned series/tracks.
IList< string > table_names
The table name (one per series/track) of the returned series/tracks.
IDictionary< string, string > info
Additional information.