Skip to main content

◆ getJob() [1/2]

GetJobResponse kinetica.Kinetica.getJob (GetJobRequestrequest_)
inline

Get the status and result of asynchronously running job.

See the createJob for starting an asynchronous job. Some fields of the response are filled only after the submitted job has finished execution.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 40526 of file KineticaFunctions.cs.

◆ getJob() [2/2]

GetJobResponse kinetica.Kinetica.getJob (longjob_id,
IDictionary< string, string >options = null )
inline

Get the status and result of asynchronously running job.

See the createJob for starting an asynchronous job. Some fields of the response are filled only after the submitted job has finished execution.

Parameters
job_idA unique identifier for the job whose status and result is to be fetched.
optionsOptional parameters.
  • JOB_TAG: Job tag returned in call to create the job.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 40575 of file KineticaFunctions.cs.

◆ GetJobAsync() [1/2]

async System.Threading.Tasks.Task< GetJobResponse > kinetica.Kinetica.GetJobAsync (GetJobRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Get the status and result of asynchronously running job.

(async)

See the createJob for starting an asynchronous job. Some fields of the response are filled only after the submitted job has finished execution.

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 40546 of file KineticaFunctions.cs.

◆ GetJobAsync() [2/2]

async System.Threading.Tasks.Task< GetJobResponse > kinetica.Kinetica.GetJobAsync (longjob_id,
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Get the status and result of asynchronously running job.

(async)

See the createJob for starting an asynchronous job. Some fields of the response are filled only after the submitted job has finished execution.

Parameters
job_idA unique identifier for the job whose status and result is to be fetched.
optionsOptional parameters.
  • JOB_TAG: Job tag returned in call to create the job.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 40604 of file KineticaFunctions.cs.