7 using System.Collections.Generic;
43 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
64 IDictionary<string, string>
options =
null)
86 public const string DONE =
"DONE";
92 public const string ERROR =
"ERROR";
114 public const string JSON =
"json";
217 public IDictionary<string, string>
status_map {
get;
set; } =
new Dictionary<string, string>();
220 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
A set of string constants for the parameter response_encoding.
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.
A set of string constants for the parameter options.
const string CANCELLED
Job cancellation was requested while the execution was in progress.
string job_response_str
The json-encoded response of the job.
A set of string constants for the parameter status_map.
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.
A set of string constants for the parameter job_status.
const string DONE
The job execution has successfully completed and the response is included in the job_response or job_...
IDictionary< string, string > options
Optional parameters.
bool running
True if the end point is still executing.
const string JOB_TAG
Job tag returned in call to create the job
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 job_response or job_response_str.
A set of results returned by Kinetica.getJob.
KineticaData - class to help with Avro Encoding for Kinetica
A set of parameters for Kinetica.getJob.
GetJobRequest()
Constructs a GetJobRequest object with default parameters.