7 using System.Collections.Generic;
27 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
43 IDictionary<string, string>
options = null)
93 public const string RUNNING =
"RUNNING";
98 public const string DONE =
"DONE";
103 public const string ERROR =
"ERROR";
107 public const string CANCELLED =
"CANCELLED";
135 public const string BINARY =
"binary";
139 public const string JSON =
"json";
162 public const string ERROR_MESSAGE =
"error_message";
168 public string endpoint {
get;
set; }
199 public string job_status {
get;
set; }
202 public bool running {
get;
set; }
205 public int progress {
get;
set; }
209 public bool successful {
get;
set; }
228 public string response_encoding {
get;
set; }
233 public byte[] job_response {
get;
set; }
238 public string job_response_str {
get;
set; }
251 public IDictionary<string, string> status_map {
get;
set; } =
new Dictionary<string, string>();
The encoding of the job result (contained in <member name="job_response"> or <member name="job_respon...
Map of various status strings for the executed job.
Status of the submitted job.
IDictionary< string, string > options
Optional parameters.
GetJobRequest(int job_id, IDictionary< string, string > options=null)
Constructs a GetJobRequest object with the specified parameters.
int job_id
A unique identifier for the job whose status and result is to be fetched.
A set of results returned by Kinetica.getJob(int,IDictionary<string, string>).
KineticaData - class to help with Avro Encoding for Kinetica
A set of parameters for Kinetica.getJob(int,IDictionary<string, string>).
GetJobRequest()
Constructs a GetJobRequest object with default parameters.