7 using System.Collections.Generic;
80 public const string BASE64 =
"base64";
84 public const string NONE =
"none";
95 public IList<string>
file_names {
get; set; } =
new List<string>();
143 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
207 IDictionary<string, string>
options = null)
209 this.file_names = file_names ??
new List<string>();
210 this.read_offsets = read_offsets ??
new List<long>();
211 this.read_lengths = read_lengths ??
new List<long>();
212 this.options =
options ??
new Dictionary<string, string>();
226 public IList<string>
file_names {
get; set; } =
new List<string>();
230 public IList<byte[]>
file_data {
get; set; } =
new List<byte[]>();
233 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IList< byte[]> file_data
Data for the respective downloaded files listed in <member name="file_names">
IList< long > read_lengths
Array of number of bytes to read from each respective file in .
IDictionary< string, string > info
Additional information.
DownloadFilesRequest(IList< string > file_names, IList< long > read_offsets, IList< long > read_lengths, IDictionary< string, string > options=null)
Constructs a DownloadFilesRequest object with the specified parameters.
const string FILE_ENCODING
Encoding to be applied to the output file data.
A set of results returned by Kinetica.downloadFiles(IList{string},IList{long},IList{long},IDictionary{string, string}).
A set of parameters for Kinetica.downloadFiles(IList{string},IList{long},IList{long},IDictionary{string, string}).
const string NONE
Do not apply any encoding to the output file data.
IList< long > read_offsets
An array of starting byte offsets from which to read each respective file in .
DownloadFilesRequest()
Constructs a DownloadFilesRequest object with default parameters.
IDictionary< string, string > options
Optional parameters.
IList< string > file_names
An array of the file names to download from KiFS.
const string BASE64
Apply base64 encoding to the output file data.
IList< string > file_names
Names of the files downloaded from KiFS
KineticaData - class to help with Avro Encoding for Kinetica