7 using System.Collections.Generic;
30 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
46 IDictionary<string, string>
options = null)
49 this.options =
options ??
new Dictionary<string, string>();
102 public const string DONE =
"DONE";
107 public const string ERROR =
"ERROR";
143 public const string JSON =
"json";
255 public IDictionary<string, string>
status_map {
get; set; } =
new Dictionary<string, string>();
258 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
The encoding of the job result (contained in <member name="job_response"> or <member name="job_respon...
byte[] job_response
The binary-encoded response of the job.
const string BINARY
The job result is binary-encoded.
long job_id
A unique identifier for the job whose status and result is to be fetched.
string job_status
Status of the submitted job.
const string CANCELLED
Job cancellation was requested while the execution was in progress.
string job_response_str
The json-encoded response of the job.
Map of various status strings for the executed job.
IDictionary< string, string > info
Additional information.
const string RUNNING
The job is currently executing.
GetJobRequest(long job_id, IDictionary< string, string > options=null)
Constructs a GetJobRequest object with the specified parameters.
const string ERROR
The job was attempted, but an error was encountered.
IDictionary< string, string > status_map
Map of various status strings for the executed job.
string endpoint
The endpoint which is being executed asynchronously.
Status of the submitted job.
const string DONE
The job execution has successfully completed and the response is included in the <member name="job_re...
IDictionary< string, string > options
Optional parameters.
bool running
True if the end point is still executing.
bool successful
True if the job execution completed and no errors were encountered.
const string JSON
The job result is json-encoded.
int progress
Approximate percentage of the job completed.
const string ERROR_MESSAGE
Explains what error occurred while running the job asynchronously.
string response_encoding
The encoding of the job result (contained in <member name="job_response"> or <member name="job_respon...
A set of results returned by Kinetica.getJob(long,IDictionary{string, string}).
KineticaData - class to help with Avro Encoding for Kinetica
A set of parameters for Kinetica.getJob(long,IDictionary{string, string}).
GetJobRequest()
Constructs a GetJobRequest object with default parameters.