7 using System.Collections.Generic;
44 public const string BASE64 =
"base64";
48 public const string NONE =
"none";
58 public IList<string>
file_names {
get;
set; } =
new List<string>();
103 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
159 IDictionary<string, string>
options =
null)
161 this.file_names =
file_names ??
new List<string>();
174 public IList<string>
file_names {
get;
set; } =
new List<string>();
178 public IList<byte[]>
file_data {
get;
set; } =
new List<byte[]>();
181 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
IList< byte[]> file_data
Data for the respective downloaded files listed in file_names
IList< long > read_lengths
Array of number of bytes to read from each respective file in file_names.
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.
A set of parameters for Kinetica.downloadFiles.
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 file_names.
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.
A set of string constants for the parameter options.
IList< string > file_names
Names of the files downloaded from KiFS
KineticaData - class to help with Avro Encoding for Kinetica